amcp / pyproject.toml
moelove's picture
add anthropic and open_response LLM format support
fb6b08c unverified
Raw
History Blame Contribute Delete
1.2 kB
[project]
name = "amcp"
version = "0.1.0"
description = "amcp: Lego-style coding agent CLI. Core: rg grep/find and read; editing & web search via MCP."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "tao" }
]
license = { text = "MIT" }
dependencies = [
"typer>=0.12.3",
"rich>=13.7.0",
"pydantic>=2.7",
"mcp[cli]",
"tomli>=2.0.0;python_version<'3.11'",
"tomli-w>=1.0.0",
"openai>=1.52.0",
"pyyaml>=6.0",
"prompt-toolkit>=3.0.0",
"agent-client-protocol>=0.7.0",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.40.0"]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.3.0",
"mypy>=1.8.0",
"anthropic>=0.40.0",
]
[project.scripts]
amcp = "amcp.cli:app"
amcp-acp = "amcp.acp_agent:main"
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "UP", "B", "SIM", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=src/amcp --cov-report=term-missing"
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false