-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (45 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
47 lines (45 loc) · 1.2 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
[project]
name = "task-manager-fastapi"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"alembic>=1.18.4",
"argon2-cffi>=25.1.0",
"asyncpg>=0.31.0",
"fastapi>=0.135.1",
"pydantic[email]>=2.0.0",
"pydantic-settings>=2.13.1",
"pyjwt[crypto]>=2.11.0",
"python-multipart>=0.0.9",
"redis>=7.2.1",
"sqlalchemy[asyncio]>=2.0.48",
"uvicorn[standard]>=0.41.0",
"structlog>=25.5.0",
"prometheus-client>=0.24.1",
"opentelemetry-api>=1.40.0",
"opentelemetry-sdk>=1.40.0",
"opentelemetry-exporter-otlp>=1.40.0",
"opentelemetry-instrumentation-fastapi>=0.61b0",
"opentelemetry-instrumentation-sqlalchemy>=0.61b0",
"opentelemetry-instrumentation-redis>=0.61b0",
]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"locust>=2.43.3",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"ruff>=0.15.5",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
asyncio_mode = "auto"
addopts = "-ra"
markers = [
"integration: интеграционные тесты с реальной базой данных",
]