-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.07 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
[tool.poetry]
name = "requestor"
version = "1.7.1"
description = "Gen3 Access Request Service"
authors = ["CTDS UChicago <cdis@uchicago.edu>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/uc-cdis/requestor"
include = [
"NOTICE",
]
[tool.poetry.dependencies]
python = "^3.9"
alembic = "^1.4.2"
authutils = "^6.2.1"
cdislogging = "^1.0.0"
fastapi = "<1"
gen3authz = "^2.1.0"
gen3config = "^1.0.0"
httpx = ">=0.20.0,<1.0.0"
jsonschema = "^4.6.0"
psycopg2-binary = "^2.8.5"
pydantic = "^1.8.2"
python-multipart = "^0.0.9"
requests = "^2.32.0"
sniffio = "^1.2.0"
uvicorn = ">=0.11.8,<1.0.0"
gino = {version = "^1.0.1", extras = ["starlette"]}
importlib-metadata = {version = "^1.7.0", python = "<3.8"}
gunicorn = "^22.0.0"
[tool.poetry.dev-dependencies]
mock = "^4.0.3"
pytest = "^6.0.1"
pytest-asyncio = "^0.16.0"
pytest-cov = "^2.8"
[tool.poetry.plugins."requestor.modules"]
"system" = "requestor.routes.system"
"manage" = "requestor.routes.manage"
"query" = "requestor.routes.query"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"