pyproject.toml•663 B
[project]
name = "build-unblocker-mcp"
version = "0.1.0"
description = "MCP server to terminate hung Windows build executables."
authors = [
{ name="Roo", email="roo@example.com" },
]
license = { text="MIT" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"psutil",
"mcp",
"fastmcp",
]
[project.scripts]
unblock-build-mcp = "build_unblocker_mcp.server:main"
[project.optional-dependencies]
test = [
"pytest",
"pytest-mock",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
pythonpath = "src"
[tool.hatch.build.targets.wheel]
packages = ["src/build_unblocker_mcp"]