[project] name = "coordinator" version = "0.1.0" description = "Tool-MAD middle-management layer for multica. Watches for in_review transitions, convenes debate rounds, and actions judge verdicts." readme = "README.md" requires-python = ">=3.11" dependencies = [ # v1 intentionally depends only on stdlib + requests + pyyaml. No async, no frameworks. # If this list grows past 4 items before a working v1 is shipped, something is wrong. "requests>=2.32", "pyyaml>=6.0", ] [project.scripts] coordinator = "coordinator.__main__:main" [build-system] requires = ["setuptools>=68"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] where = ["src"] [tool.pytest.ini_options] markers = [ "integration: mark test as integration test (requires real API credentials)", ]