-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (38 loc) · 960 Bytes
/
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 = "milky-ums"
version = "1.0.0"
description = "Backend UMS"
authors = ["JKearnsl <[email protected] >"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.110.1"
uvicorn = "^0.29.0"
python-multipart = "^0.0.9"
user-agents = "^2.2.0"
SQLAlchemy = "^2.0.19"
asyncpg = "^0.29.0"
psycopg2-binary = "^2.9.7"
aiohttp = "3.9.3"
aiobotocore = "^2.7.0"
redis = "^5.0.1"
python-consul = "^1.1.0"
aio-pika = "^9.2.0"
email-validator = "^2.0.0"
grpcio = "^1.59.0"
jinja2 = "^3.1.2"
argon2-cffi = "^23.1.0"
PyYAML = "^6.0.1"
python-dotenv= "^1.0.0"
python-jose = { version = "==3.3.*", extras = ["cryptography"] }
grpcio-tools = "^1.57.0"
[tool.poetry.group.dev.dependencies]
alembic = "^1.12.0"
types-aiobotocore = "^2.6.0"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.packages]]
include = "src/ums"
[tool.poetry.scripts]
ums = "ums.main:application"