Setuptools was omitting non-Python files; add package-data glob so templates and static assets are present after pip install. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
709 B
TOML
30 lines
709 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "corvid"
|
|
version = "0.1.0"
|
|
description = "Standalone ticket management service for AI agents"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.115",
|
|
"sqlalchemy[asyncio]>=2.0",
|
|
"asyncpg>=0.30",
|
|
"uvicorn[standard]>=0.32",
|
|
"alembic>=1.14",
|
|
"pydantic>=2.0",
|
|
"jinja2>=3.1",
|
|
"aiofiles>=24.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
mcp = ["mcp[cli]>=1.0", "httpx>=0.28"]
|
|
dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "aiosqlite>=0.20"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["corvid*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
corvid = ["templates/**", "static/**"]
|