pyproject.toml•816 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "execution-system-mcp"
version = "0.1.0"
description = "MCP server for project creation"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mcp>=0.9.0",
"pyyaml>=6.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/execution_system_mcp"]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-mock>=3.12.0",
"pytest-cov>=4.1.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.coverage.run]
source = ["src"]
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]