[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kiro-cli-mcp"
version = "0.1.0"
description = "MCP Server for orchestrating Kiro CLI from Kiro IDE"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Kiro CLI MCP Contributors", email = "contributors@kiro-cli-mcp.dev" }
]
keywords = ["mcp", "kiro", "cli", "ai", "assistant"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"hypothesis>=6.100.0",
"pytest-cov>=4.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[project.scripts]
kiro-cli-mcp = "kiro_cli_mcp.__main__:main"
[project.urls]
Homepage = "https://github.com/vanphappi/kiro-cli-mcp"
Repository = "https://github.com/vanphappi/kiro-cli-mcp"
Issues = "https://github.com/vanphappi/kiro-cli-mcp/issues"
Documentation = "https://github.com/vanphappi/kiro-cli-mcp#readme"
[tool.hatch.build.targets.wheel]
packages = ["src/kiro_cli_mcp"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v --tb=short"
[tool.hypothesis]
max_examples = 100
deadline = 5000
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_ignores = true