-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.12 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
[project]
name = "backend-service"
version = "0.1.0"
description = "Production-style FastAPI backend service demo"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.115.6",
"uvicorn[standard]==0.30.6",
"sqlalchemy==2.0.36",
"alembic==1.14.0",
"psycopg[binary]==3.2.3",
"pydantic-settings==2.6.1",
"email-validator==2.2.0",
"python-jose[cryptography]==3.3.0",
"bcrypt==4.2.0",
"redis==5.2.0",
"celery==5.4.0",
"structlog==24.4.0",
"prometheus-fastapi-instrumentator==7.0.0",
"opentelemetry-api==1.29.0",
"opentelemetry-sdk==1.29.0",
"opentelemetry-exporter-otlp==1.29.0",
"opentelemetry-instrumentation-fastapi==0.50b0",
"opentelemetry-instrumentation-requests==0.50b0",
"opentelemetry-instrumentation-sqlalchemy==0.50b0",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.3",
"pytest-cov==6.0.0",
"httpx==0.27.2",
"ruff==0.7.4",
"mypy==1.13.0",
"types-redis==4.6.0.20241004",
"testcontainers==4.10.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
[tool.ruff.format]
quote-style = "double"