-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.04 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
[tool.poetry]
name = "indexd"
version = "5.1.1"
description = "Gen3 Indexing Service"
authors = ["CTDS UChicago <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/uc-cdis/indexd"
include = [
"NOTICE",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
alembic = "^1.9.4"
authutils = "^6.0.0"
cdislogging = "^1.0.0"
cdiserrors = "^1.0.0"
doiclient = {git = "https://github.com/uc-cdis/doiclient", rev = "1.0.0"}
dosclient = {git = "https://github.com/uc-cdis/dosclient", rev = "1.1.0"}
gen3authz = "^1.0.4"
hsclient = {git = "https://github.com/uc-cdis/hsclient", rev = "1.0.0"}
indexclient = "^2.1.0"
jsonschema = "^3.2"
psycopg2-binary = ">=2.7"
gunicorn = ">=22.0.0"
flask = "^2.3.3"
sqlalchemy = "^1.4.0"
sqlalchemy-utils = "^0.37.3"
PyYAML = ">=5.3,<7"
[tool.poetry.dev-dependencies]
coveralls = "^3.0.1"
mock = "^4.0.2"
pytest = "^6.2.4"
pytest-cov = "^2.12.0"
pytest-flask = "^1.2.0"
responses = "^0.13.0"
swagger_spec_validator = "^2.6.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"