pyproject.tomlā¢922 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dashboard-api"
version = "0.1.0"
description = "FastAPI backend for Tiger MCP dashboard"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"sqlalchemy>=2.0.0",
"alembic>=1.12.0",
"asyncpg>=0.28.0",
"python-jose[cryptography]>=3.3.0",
"python-multipart>=0.0.6",
"python-dotenv>=1.0.0",
"loguru>=0.7.0",
"shared",
]
[tool.uv.sources]
shared = { workspace = true }
[project.scripts]
dashboard-api = "dashboard_api.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/dashboard_api"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
]
[dependency-groups]
dev = [
"pytest-mock>=3.14.1",
"pytest-cov>=6.2.1",
"pytest-asyncio>=0.21.0",
"httpx>=0.28.1",
]