37 lines
1021 B
TOML
37 lines
1021 B
TOML
[project]
|
|
name = "g2s-aggregator"
|
|
version = "0.1.0"
|
|
description = ""
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"fastapi>=0.135.1,<0.136.0",
|
|
"uvicorn[standard]>=0.41.0,<0.42.0",
|
|
"httpx>=0.28.1,<0.29.0",
|
|
"pydantic>=2.12.5,<3.0.0",
|
|
"pydantic-settings>=2.13.1,<3.0.0",
|
|
"aioredis>=2.0.1,<3.0.0",
|
|
"structlog>=25.5.0,<26.0.0",
|
|
"opentelemetry-api>=1.40.0,<2.0.0",
|
|
"opentelemetry-sdk>=1.40.0,<2.0.0",
|
|
"opentelemetry-exporter-otlp>=1.40.0,<2.0.0",
|
|
"opentelemetry-instrumentation-fastapi>=0.61b0",
|
|
"opentelemetry-instrumentation-httpx>=0.61b0",
|
|
"opentelemetry-instrumentation-redis>=0.61b0",
|
|
"pytest>=9.0.2,<10.0.0",
|
|
"redis>=7.3.0,<8.0.0",
|
|
"sqlalchemy>=2.0.49,<3.0.0",
|
|
"asyncpg>=0.31.0,<0.32.0",
|
|
"alembic>=1.18.4,<2.0.0",
|
|
"aiosqlite>=0.22.1,<0.23.0",
|
|
"aiosmtplib>=4.0.2,<5.0.0",
|
|
"email-validator>=2.2.0,<3.0.0",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
addopts = ["--import-mode=importlib"]
|