-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
63 lines (59 loc) · 1.43 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
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "sheepdog"
version = "5.1.6"
description = "Gen3 Submission Service"
authors = ["CTDS UChicago <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/uc-cdis/sheepdog"
include = [
"NOTICE",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
authlib = "*" # let authutils decide which version we're using
authutils = ">=6.0.0"
boto = ">=2.49.0"
botocore = "*"
datamodelutils = ">=1.0.0"
dictionaryutils = ">=3.4.10"
envelopes = ">=0.4"
Flask = ">=2.2.5"
Flask-SQLAlchemy-Session = ">=1.1"
fuzzywuzzy = ">=0.6.1"
gen3authz = ">=1.0.4"
graphene = ">=2.0.1"
jsonschema = ">=3.2"
lxml = ">=4.6.5"
psycopg2 = ">=2.8.4"
PyYAML = ">=5.4.1"
requests = ">=2.31.0,<3.0.0"
simplejson = ">=3.8.1"
sqlalchemy = ">=1.3.*"
cdispyutils = ">=2.0.1"
psqlgraph = ">=3.0.1"
cdiserrors = ">=1.0.0"
cdislogging = ">=1.0.0"
gen3dictionary = ">=2.0.3"
gen3datamodel = ">=3.1.0"
indexclient = ">=2.1.1"
urllib3 = "<2.0.0"
werkzeug = ">=3.0.6"
[tool.poetry.dev-dependencies]
pytest = ">=4.6.5"
pytest-cov = ">=2.5.1"
requests_mock = ">=1.4.0"
coverage = ">=5.3.0"
mock = ">=1.0.1"
pytest-flask = ">=1.2.0"
moto = "^4.2.9"
sphinxcontrib-httpdomain = ">=1.3.0"
codacy-coverage = ">=1.3.11"
Sphinx = ">=1.6.5"
sphinx_rtd_theme = "*"
flasgger = ">=0.9.1"
indexd = {git = "https://github.com/uc-cdis/indexd", rev = "5.0.3"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
markers = ["ssl"]