-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
51 lines (47 loc) · 1.18 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
[tool.poetry]
name = "peregrine"
version = "3.2.3"
description = "Query interface to get insights into data in Gen3 Commons"
authors = ["CTDS UChicago <cdis@uchicago.edu>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/uc-cdis/peregrine"
include = [
"NOTICE",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.10"
authutils = ">=6.2.0"
datamodelutils = ">=1.0"
defusedxml = ">=0.5"
dictionaryutils = ">=3.4.10"
gen3dictionary = ">=2.0.3"
simplejson = ">=3.8"
stopit = ">=1.1"
Flask = ">=2.2.5"
Flask-Cors = "<6"
gen3authz = "<3"
PyYAML = ">=5.4.1"
dicttoxml = ">=1.5"
SQLAlchemy = "1.3.5"
graphene = ">=2.0,<3"
promise = ">=2.2"
Flask-SQLAlchemy-Session = ">=1.1"
psqlgraph = ">=3.0"
cdispyutils = ">=2.0.1"
cdiserrors = ">=0.1"
cdislogging = "<2"
requests = "2.32.3"
[tool.poetry.dev-dependencies]
pytest = ">=6.0"
cryptography = "*"
mock = ">=1.0"
pytest-flask = ">=0.15"
pytest-cov = ">=2.8"
indexclient = ">=2.1.1"
sheepdog = {git = "https://git@github.com/uc-cdis/sheepdog.git", rev = "5.1.4" }
[tool.poetry.plugins."peregrine.modules"]
"system" = "peregrine=peregrine.api:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"