pyproject.toml•668 B
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "comfyui-mcp"
version = "0.1.0"
description = "Model Context Protocol server for orchestrating ComfyUI workflows"
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "ComfyUI MCP Maintainers" }]
dependencies = [
"httpx>=0.26",
"mcp>=1.19.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
]
[project.scripts]
comfyui-mcp = "comfyui_mcp.cli:main"
comfyui-mcp-serve = "comfyui_mcp.runtime:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
[tool.pytest.ini_options]
pythonpath = ["src"]