Some checks failed
test / contract-and-unit (pull_request) Failing after 14s
The 'git merge origin/main' auto-merged both P2 and P3 dev-deps blocks into one pyproject.toml with two [project.optional-dependencies] sections (tomltools refuses to parse that). Drop the second copy; both blocks listed the same pytest + pytest-asyncio pair, just in different order. Caught by 'python -m pytest' exiting 1 with a TOMLDecodeError before any test ran.
45 lines
916 B
TOML
45 lines
916 B
TOML
[project]
|
|
name = "damascus-orchestrator"
|
|
version = "0.1.0"
|
|
description = "Postgres + Taskiq atomic-claim orchestrator with Gitea and a file-based LLM wiki."
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"psycopg[binary]>=3.2",
|
|
"psycopg-pool>=3.2",
|
|
"fastapi>=0.110",
|
|
"uvicorn>=0.27",
|
|
"starlette>=0.36",
|
|
"taskiq>=0.11,<0.13",
|
|
"taskiq-redis>=0.4",
|
|
"redis>=5",
|
|
"httpx>=0.27",
|
|
"PyYAML>=6.0",
|
|
"pydantic>=2.6",
|
|
"pydantic-settings>=2.2",
|
|
"click>=8.1",
|
|
"rich>=13.7",
|
|
"mcp>=1.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7",
|
|
"pytest-asyncio>=0.23",
|
|
]
|
|
|
|
[project.scripts]
|
|
damascus = "damascus.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"db: tests that require a live Postgres (skip with -m 'not db' for a fast loop)",
|
|
]
|
|
asyncio_mode = "auto"
|