47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[project]
|
|
name = "dashboard"
|
|
version = "0.1.0"
|
|
description = "Admin dashboard for web search providers, cost tracking, and config management"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.32.0",
|
|
"pydantic>=2.9.0",
|
|
"pydantic-settings>=2.6.0",
|
|
"httpx>=0.27.0",
|
|
"sqlalchemy[asyncio]>=2.0.36",
|
|
"asyncpg>=0.30.0",
|
|
"alembic>=1.14.0",
|
|
"jinja2>=3.1.4",
|
|
"python-multipart>=0.0.12",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"prometheus-fastapi-instrumentator>=7.0.0",
|
|
"opentelemetry-instrumentation-fastapi>=0.50b0",
|
|
"opentelemetry-instrumentation-httpx>=0.50b0",
|
|
"opentelemetry-exporter-otlp-proto-grpc>=1.30.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.24.0",
|
|
"pytest-cov>=4.0.0",
|
|
"ruff>=0.8.0",
|
|
"respx>=0.21.0",
|
|
"mypy>=1.0.0",
|
|
"aiosqlite>=0.20.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/dashboard"]
|
|
|
|
[tool.ruff]
|
|
extend = "../../ruff.toml"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|