activity-core/pyproject.toml
tegwick 01ba1865ce
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 2s
Build and Publish Container Image / build-and-push (push) Successful in 20s
feat(activity): repo-scoped automation review CLI (WP-0028)
Ship the activity console script for consumer-repo morning review: list,
status, runs, deliverables, inbox, checkpoint, and ack. Offline-first with
git + local defs; enriches from ops API and State Hub. Multi-source trust
matrix never reports did-not-run when git has the artefact. Adds
target_repo filter on GET /ops/automations.
2026-08-06 13:05:46 +02:00

36 lines
706 B
TOML

[project]
name = "activity-core"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0",
"temporalio>=1.7",
"asyncpg>=0.29",
"sqlalchemy[asyncio]>=2.0",
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"alembic>=1.14",
"nats-py>=2.7",
"httpx>=0.27",
"pyyaml>=6.0",
]
[project.scripts]
activity = "activity_core.review_cli.main:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"temporalio[testing]>=1.7",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/activity_core"]