Files
weather-data-api/pyproject.toml
T
2026-06-19 13:38:17 +08:00

13 lines
307 B
TOML

[project]
name = "weather-data-api"
version = "0.1.0"
description = "FastAPI service to receive and serve weather station data"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"asyncpg>=0.30.0",
"pydantic-settings>=2.7.0",
]