-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 789 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 789 Bytes
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 = "src"
version = "0.1.0"
description = ""
authors = ["Mani <mani.mozaffar@gmail.com>"]
readme = "README.md"
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "0.96.0"
asyncpg = "^0.27.0"
sqlalchemy = "^2.0.16"
uvicorn = "^0.22.0"
pydantic = {extras = ["dotenv"], version = "^1.10.9"}
aiosqlite = "^0.19.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = "^1.7.4"
isort = "^5.12.0"
opentelemetry-sdk = "^1.18.0"
bcrypt = "^4.0.1"
alembic = "^1.11.1"
rich = "^13.4.2"
redis = "^4.5.5"
httpx = "^0.24.1"
pytest-asyncio = "^0.21.0"
greenlet = "^2.0.2"
pyotp = "^2.8.0"
qrcode = "^7.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"