-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (46 loc) · 1.21 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "chord-drs"
version = "0.18.0"
description = "An implementation of a data repository system (as per GA4GH's specs) for the Bento platform."
authors = ["David Lougheed <[email protected]>"]
license = "LGPL-3.0"
readme = "README.md"
packages = [{include = "chord_drs"}]
include = [
"chord_drs/migrations/*",
"chord_drs/migrations/**/*",
]
[tool.poetry.dependencies]
python = "^3.10"
boto3 = ">=1.34.81,<1.35"
bento-lib = {version = "^12.1.0", extras = ["flask"]}
flask = "~3.0.3"
flask-sqlalchemy = ">=3.1.1,<3.2"
flask-migrate = ">=4.0.5,<4.1"
prometheus-flask-exporter = ">=0.23.0,<0.24"
python-dotenv = ">=1.0.0,<1.1"
sqlalchemy = ">=2.0.29,<2.1"
flask-cors = "^5.0.0"
werkzeug = "~3.0.6"
asgiref = "^3.7.2"
[tool.poetry.group.dev.dependencies]
coverage = "^7.4.4"
moto = "^4.2.14"
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
pytest-dotenv = "^0.5.2"
responses = "^0.25.0"
tox = "^4.12.1"
debugpy = "^1.8.6"
pytest-lazy-fixture = "^0.6.3"
sqlalchemy-stubs = "^0.4"
mypy = "~1.10.1"
types-flask-cors = "^4.0.0.2"
types-flask-migrate = "^4.0.0.7"
black = "^24.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
exclude = "migrations"