[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "ai-orchestrator" version = "0.1.0" description = "A Python implementation of the Symphony specification for orchestrating coding agents" readme = "README.md" license = "Apache-2.0" requires-python = ">=3.11" authors = [ { name = "DoctoDre" }, ] dependencies = [ "httpx>=0.27.0", "pyyaml>=6.0", "jinja2>=3.1", "watchdog>=4.0", "uvicorn>=0.29.0", "starlette>=0.37.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.23", "pytest-cov>=5.0", "ruff>=0.4.0", "mypy>=1.10", "types-PyYAML>=6.0", ] [project.scripts] ai-orchestrator = "ai_orchestrator.cli:main" [tool.hatch.build.targets.wheel] packages = ["src/ai_orchestrator"] [tool.ruff] target-version = "py311" line-length = 100 [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP"] [tool.mypy] python_version = "3.11" strict = true warn_return_any = true warn_unused_configs = true [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto"