pyproject.toml•2.04 kB
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "mcp-project-orchestrator"
version = "0.1.0"
description = "A comprehensive project orchestration tool for managing Model Context Protocol (MCP) projects, templates, prompts, and Mermaid diagrams"
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
dependencies = [
"fastapi>=0.68.0",
"uvicorn>=0.15.0",
"jinja2>=3.0.1",
"pydantic>=1.8.2",
"python-dotenv>=0.19.0",
"aiofiles>=0.7.0",
"PyYAML>=6.0",
"jsonschema>=4.0.0",
"rich>=10.12.0",
"typer>=0.4.0",
"python-multipart>=0.0.5",
"requests>=2.26.0",
"aiohttp>=3.8.0",
"watchdog>=2.1.6",
"mermaid-cli>=0.1.0",
"markdown>=3.3.4",
"pygments>=2.10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.2.5",
"pytest-asyncio>=0.16.0",
"pytest-cov>=2.12.1",
"black>=21.9b0",
"isort>=5.9.3",
"mypy>=0.910",
"ruff>=0.1.0",
"pre-commit>=2.15.0",
]
[project.scripts]
mcp-orchestrator = "mcp_project_orchestrator.cli:main"
[project.urls]
Homepage = "https://github.com/sparesparrow/mcp-project-orchestrator"
Documentation = "https://github.com/sparesparrow/mcp-project-orchestrator/blob/main/README.md"
[tool.mcp_project_orchestrator]
description = "An MCP server to orchestrate software projects, utilizing standardized templates and design patterns."
[tool.mcp_project_orchestrator.config]
communication_protocol = "JSON-RPC"
mcp_compliance = true
[tool.black]
line-length = 100
target-version = ["py39"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 100
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.ruff]
line-length = 100
target-version = "py39"
select = ["E", "F", "B", "I"]
ignore = []
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --cov=mcp_project_orchestrator"
testpaths = ["tests"]