32 lines
733 B
TOML
32 lines
733 B
TOML
[tool.poetry]
|
|
name = "g2s-aggregator"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.14"
|
|
fastapi = "^0.135.1"
|
|
uvicorn = {extras = ["standard"], version = "^0.41.0"}
|
|
httpx = "^0.28.1"
|
|
pydantic = "^2.12.5"
|
|
pydantic-settings = "^2.13.1"
|
|
aioredis = "^2.0.1"
|
|
structlog = "^25.5.0"
|
|
opentelemetry-api = "^1.40.0"
|
|
opentelemetry-sdk = "^1.40.0"
|
|
opentelemetry-exporter-otlp = "^1.40.0"
|
|
opentelemetry-instrumentation-fastapi = "^0.61b0"
|
|
opentelemetry-instrumentation-httpx = "^0.61b0"
|
|
pytest = "^9.0.2"
|
|
redis = "^7.3.0"
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|