-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (50 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
52 lines (50 loc) · 1.19 KB
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
51
52
[project]
name = "api"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = "==3.12.0"
dependencies = [
"fastapi>=0.112.1",
"uvicorn>=0.30.6",
"sqlalchemy>=2.0.32",
"asyncpg>=0.29.0",
"python-dotenv>=1.0.1",
"psycopg2-binary>=2.9.9",
"greenlet>=3.0.3",
"python-jose>=3.3.0",
"httpx>=0.27.0",
"protobuf>=4.25.4",
"trio>=0.26.2",
"logfire[fastapi]==4.1.0",
"opentelemetry-instrumentation-sqlalchemy>=0.47b0",
"opentelemetry-instrumentation-asyncio>=0.47b0",
"boto3>=1.35.5",
"scalar-fastapi>=1.0.3",
"cryptography>=43.0.1",
"websockets>=13.0.1",
"python-multipart>=0.0.9",
"modal==1.1.1",
"sqlmodel>=0.0.22",
"aioboto3>=7.0.0",
"upstash-redis>=1.2.0",
"huggingface-hub>=0.26.0",
"tabulate>=0.9.0",
"stripe>=11.3.0",
"resend>=2.5.1",
"discord-py>=2.4.0",
"nanoid>=2.0.0",
"redis>=6.3.0",
"cachetools>=5.3.0",
"clerk-backend-api>=3.3.0",
"autumn-py[aio]>=3.0.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.6.2",
"pytest>=8.3.3",
"pytest-asyncio>=0.24.0",
]