-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
66 lines (60 loc) · 1.46 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
64
65
66
[tool.poetry]
name = "aqueductcore"
version = "0.0.9"
description = "Aqueduct core web application."
authors = ["Aqueduct Team <[email protected]>"]
license = "MIT"
readme = "README.md"
exclude = [
"aqueductcore/frontend"
]
[tool.poetry.dependencies]
python = ">= 3.8,< 3.12"
grpcio = "^1.57"
pydantic = {version = "^2.6",extras = ["email"]}
pydantic-settings = "^2.2"
typing-extensions = "^4.7"
protobuf = "^4.24"
uvicorn = {version = "^0.23",extras = ["standard"]}
fastapi = "^0.110"
strawberry-graphql = {version = "^0.219",extras = ["fastapi"]}
sqlalchemy = {version = "^2.0",extras = ["asyncio"]}
asyncpg = "^0.28"
python-multipart = "^0.0.9"
aiofiles = "^23.2"
streaming-form-data = "^1.13"
gunicorn = "^22.0"
pip-licenses = "^4.3"
pathvalidate = "^3.2"
bcrypt = "^4.1"
typer = "^0.12"
psycopg2-binary = "^2.9"
celery = "^5.4"
flower = "^2.0"
psutil = "^6.0.0"
[tool.poetry.scripts]
aqueduct = "aqueductcore.cli:app"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4"
grpcio-tools = "^1.57"
pylint = "^2.17"
yapf = "^0.40"
pytest-grpc = "^0.8"
mypy = "^1.5"
pytest-cov = "^4.1"
pylint-protobuf = "^0.20"
mypy-protobuf = "^3.5"
pip-licenses = "^4.3"
requests = "^2.32"
pytest-asyncio = "^0.21"
httpx = "^0.25"
mkdocs-material = "^9.4"
mike = "^2.0"
aiosqlite = "^0.19"
alembic = "^1.12"
mkdocstrings = {version = "^0.24",extras = ["python"]}
nbconvert = "^7.14"
pytz = "^2024.1"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"