13 lines
307 B
TOML
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",
|
|
]
|