32 lines
732 B
TOML
32 lines
732 B
TOML
[project]
|
|
name = "catalog-api"
|
|
version = "0.1.0"
|
|
description = "Service catalog API - aggregates component information"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi>=0.128.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"httpx>=0.28.0",
|
|
"pydantic>=2.0",
|
|
"pydantic-settings>=2.0",
|
|
"prometheus-fastapi-instrumentator>=7.0.0",
|
|
"opentelemetry-instrumentation-fastapi>=0.50b0",
|
|
"opentelemetry-exporter-otlp-proto-grpc>=1.30.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-cov>=4.0",
|
|
"ruff>=0.8",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/catalog_api"]
|
|
|
|
[tool.ruff]
|
|
extend = "../../ruff.toml"
|