-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
40 lines (34 loc) · 1.04 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
[tool.poetry]
name = "tmeit_backend"
version = "1.3.5"
description = "Python backend for the TMEIT website"
authors = ["TraditionsMEsterIT"]
license = "AGPL-3.0"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.85.1"
pydantic = {extras = ["email"], version = "^1.10.2"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
uvicorn = {extras = ["standard"], version = "^0.18.3"}
sqlalchemy = {version = "2.0.0b2", extras = ["postgresql_asyncpg"]}
asyncpg = "0.27.0"
argon2-cffi = "^21.3.0"
python-multipart = "^0.0.5"
arq = "^0.24.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
alembic = "^1.8.1"
hypothesis = "^6.46.11"
requests = "^2.27.1"
pytest-asyncio = "^0.18.3"
[tool.poetry.group.migrate.dependencies]
asyncmy = "^0.2.5"
[tool.poetry.group.arq-worker.dependencies]
pydantic = {extras = ["email"], version = "^1.10.2"}
sqlalchemy = {version = "2.0.0b2", extras = ["postgresql_asyncpg"]}
asyncpg = "0.27.0"
python-multipart = "^0.0.5"
arq = "^0.24.0"
[build-system]
requires = ["poetry>=1.1"]
build-backend = "poetry.masonry.api"