pyproject.toml•890 B
[project]
name = "polyagent-mcp"
version = "0.1.0"
description = "MCP server that brings Claude Code agents to Codex, Gemini CLI and other AI coding assistants"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.12.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = ["ruff>=0.13.0", "pytest>=8.0.0"]
[project.scripts]
polyagent-mcp = "polyagent_mcp.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["polyagent_mcp"]
[tool.ruff]
line-length = 110
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"