- corvid/templates/base.html: simplified nav (Corvid logo, Tickets link only), no user footer, no SSO — identical dark theme and component styles - corvid/templates/tickets.html: copied verbatim from homelab-dashboard (all API paths are relative, no user-specific references) - corvid/main.py: /tickets HTML route + / redirect; templates loaded from package dir so they work whether installed or run from source - corvid/router.py: allow open access when TICKETS_API_KEY is not set (local/dev mode) — set the key to require auth for external access - pyproject.toml: add jinja2>=3.1 dependency Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
616 B
TOML
26 lines
616 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",
|
|
]
|
|
|
|
[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*"]
|