Meteo_API/pyproject.toml

27 lines
568 B
TOML
Raw Normal View History

2024-06-10 06:12:18 +00:00
[project]
name = "Distributed_Meteo_API"
version = "0.0.1"
description = "Federated/Distributed system for saving data from meteostations"
authors = [
{name = "Jan Beníček", email = "jan00@benicek.xyz"},
]
dependencies = [
"fastapi>=0.111.0",
"pydantic>=2.7.3",
"pydantic-settings>=2.3.1",
"motor>=3.4.0",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.scripts]
start = "uvicorn src.main:app --reload"