plano/demos/getting_started/weather_forecast/pyproject.toml

27 lines
595 B
TOML
Raw Normal View History

2025-12-26 11:21:42 -08:00
[project]
2024-11-07 22:11:00 -06:00
name = "api-server"
version = "0.1.0"
description = ""
2025-12-26 11:21:42 -08:00
authors = [{name = "Adil Hafeez", email = "info@katanemo.com"}]
2024-11-07 22:11:00 -06:00
readme = "README.md"
2025-12-26 11:21:42 -08:00
requires-python = ">=3.12"
dependencies = [
"opentelemetry-instrumentation-fastapi>=0.49b0",
"fastapi>=0.115.4",
"pyyaml>=6.0.2",
"uvicorn>=0.32.0",
"opentelemetry-api>=1.28.0",
"opentelemetry-sdk>=1.28.0",
"opentelemetry-exporter-otlp>=1.28.0",
]
2024-11-07 22:11:00 -06:00
2025-12-26 11:21:42 -08:00
[project.scripts]
api-server = "main:app"
2024-11-07 22:11:00 -06:00
[build-system]
2025-12-26 11:21:42 -08:00
requires = ["hatchling"]
build-backend = "hatchling.build"
2024-11-07 22:11:00 -06:00
2025-12-26 11:21:42 -08:00
[tool.hatch.build.targets.wheel]
packages = ["."]