-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
41 lines (38 loc) · 877 Bytes
/
Pipfile
File metadata and controls
41 lines (38 loc) · 877 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
40
41
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
fastapi = "*"
uvicorn = {extras = ["standard"] }
sqlalchemy = "*"
databases = {extras = ["aiosqlite"] }
#databases = {extras = ["asyncpg"], version = "*"} #for postgresql
#psycopg2-binary = "*" #for postgresql
python-dotenv = "*"
pydantic-settings = "*"
rich = "*"
asgi-correlation-id = "*"
python-json-logger = "*"
python-jose = "*"
python-multipart = "*"
passlib = {extras = ["bcrypt"] }
httpx = "*"
aiofiles = "*"
b2sdk = "*"
opentelemetry-exporter-jaeger = "*"
opentelemetry-instrumentation-fastapi = "*"
opentelemetry-instrumentation-logging = "*"
starlette-exporter = "*"
[dev-packages]
ruff = "*"
black = {extras = ["d"], version = "*"}
isort = "*"
pytest = "*"
pytest-mock = "*"
pyfakefs = "*"
openalchemy = "*"
faker = "*"
sqlacodegen-v2 = "*"
[requires]
python_version = "3.10"