pyproject.toml•1.52 kB
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-debug-tool"
version = "0.2.0"
description = "Python debugging capabilities via Model Context Protocol"
authors = [{name = "Debug-MCP Team"}]
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
keywords = ["debugging", "mcp", "model-context-protocol", "python", "dap", "debugpy"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Debuggers",
]
dependencies = [
"pydantic>=2.0.0",
"mcp>=0.1.0",
"debugpy>=1.8.0",
]
[project.urls]
Homepage = "https://github.com/your-org/Debug-MCP"
Repository = "https://github.com/your-org/Debug-MCP"
Issues = "https://github.com/your-org/Debug-MCP/issues"
Documentation = "https://github.com/your-org/Debug-MCP#readme"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
]
cli = [
"typer>=0.9.0",
"rich>=13.0.0",
]
[project.scripts]
mcp-debug = "cli.main:app"
mcp-debug-server = "mcp_debug_tool.server:main"
# Note: server:main now runs the async SDK-based server (formerly server_v2.py)
[tool.setuptools.packages.find]
where = ["src"]
include = ["mcp_debug_tool*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]