Files
activity-core/pyproject.toml
tegwick 517bf9c133 Add kaizen context resolver for scheduled agent fleet discovery.
Implement discover_kaizen_scheduled_repos and discover_kaizen_projects per
kaizen-agentic ADR-005 contract: State Hub roster, roster.yaml filter, schedule
validation, and prepare_command emission. Register kaizen/resolver/shell source
types with unit tests and runbook dry-run instructions.
2026-06-18 07:46:46 +02:00

34 lines
639 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.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"]