pyproject.toml•1.05 kB
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-build"
version = "0.2.0"
description = "MCP server for executing build commands across multiple repositories"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
dependencies = [
"mcp>=0.9.0",
"pydantic>=2.0.0",
"starlette>=0.27.0",
"uvicorn>=0.23.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.24.0",
"black>=23.0.0",
"mypy>=1.0.0",
]
[project.scripts]
mcp-build = "server:cli"
[tool.setuptools]
py-modules = ["server", "validators", "helpers"]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
"*" = ["*.sh"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true