2026-06-23 23:54:37 +00:00
|
|
|
[project]
|
|
|
|
|
name = "context-dossier"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
description = "Context Dossier — single source of truth for multi-harness project context"
|
|
|
|
|
requires-python = ">=3.11"
|
2026-06-24 22:50:54 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"psycopg[binary]>=3.1",
|
|
|
|
|
"mcp>=1.28",
|
|
|
|
|
"uvicorn>=0.30",
|
|
|
|
|
"pyyaml>=6.0",
|
|
|
|
|
]
|
2026-06-23 23:54:37 +00:00
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
dossier = "ctxd:cli_entry"
|
|
|
|
|
ctxd = "ctxd:daemon_entry"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
|
|
|
ctxd = ["*.sql", "*.html"]
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=68"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|