-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.7 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
53
54
55
[project]
name = "fastapi-template"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12, <4.0"
dependencies = [
"alembic>=1.18.4",
"fastapi>=0.135.3",
"greenlet>=3.3.2",
"psycopg>=3.3.3",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"sqlalchemy>=2.0.48",
"tenacity>=9.1.4",
"uvicorn>=0.42.0",
]
[dependency-groups]
dev = [
"black>=26.3.1",
"factory-boy>=3.3.3",
"httpx>=0.28.1",
"isort>=8.0.1",
"pip>=26.0.1", # otherwise PyCharm does not detect installed packages
"pytest-asyncio>=1.3.0",
"ruff>=0.15.8",
]
load-testing = [
"locust>=2.40.2",
]
telemetry = [
"hyperdx-opentelemetry>=0.3.0",
"opentelemetry-instrumentation-asgi==0.51b0",
"opentelemetry-instrumentation-asyncio==0.51b0",
"opentelemetry-instrumentation-click==0.51b0",
"opentelemetry-instrumentation-dbapi==0.51b0",
"opentelemetry-instrumentation-fastapi==0.51b0",
"opentelemetry-instrumentation-grpc==0.51b0",
"opentelemetry-instrumentation-httpx==0.51b0",
"opentelemetry-instrumentation-logging==0.51b0",
"opentelemetry-instrumentation-psycopg==0.51b0",
"opentelemetry-instrumentation-requests==0.51b0",
"opentelemetry-instrumentation-sqlalchemy==0.51b0",
"opentelemetry-instrumentation-sqlite3==0.51b0",
"opentelemetry-instrumentation-starlette==0.51b0",
"opentelemetry-instrumentation-system-metrics==0.51b0",
"opentelemetry-instrumentation-threading==0.51b0",
"opentelemetry-instrumentation-tortoiseorm==0.51b0",
"opentelemetry-instrumentation-urllib==0.51b0",
"opentelemetry-instrumentation-urllib3==0.51b0",
"opentelemetry-instrumentation-wsgi==0.51b0",
]