-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.13 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
[tool.poetry]
name = "moderate_api"
version = "0.2.0"
description = "HTTP API of the MODERATE platform"
authors = ["Andres Garcia Mangas <[email protected]>"]
license = "EUPL-1.2"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.110.0"
uvicorn = { extras = ["standard"], version = "^0.22.0" }
coloredlogs = "^15.0.1"
pyjwt = "^2.8.0"
httpx = "^0.27.0"
cryptography = "^41.0.5"
cachetools = "^5.3.2"
asyncache = "^0.3.1"
pydantic = "^1.10.0"
python-multipart = "^0.0.6"
itsdangerous = "^2.1.2"
ujson = "^5.8.0"
orjson = "^3.9.10"
email-validator = "^2.1.0.post1"
asyncpg = "^0.29.0"
sqlmodel = "^0.0.21"
greenlet = "^3.0.1"
casbin = "^1.33.0"
arrow = "^1.3.0"
aiobotocore = "^2.7.0"
python-slugify = "^8.0.1"
pygwalker = "^0.4.6"
alembic = "^1.13.1"
psycopg2-binary = "^2.9.9"
numpy = "^1.26.4"
marimo = "^0.7.12"
polars = "^1.3.0"
aio-pika = "^9.4.3"
[tool.poetry.group.dev.dependencies]
black = "^24.4.0"
pytest = "^8.3.0"
pytest-asyncio = "^0.23.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
write-openapi = "moderate_api.openapi:write_openapi"