pyproject.toml•606 B
[project]
name = "dap-mcp"
version = "0.1.5"
description = "dap-mcp: A Debug Adapter Protocol (DAP) enabled Model Context Protocol (MCP) server that bridges debugging tools with AI systems, providing a standardized context for LLMs."
requires-python = ">=3.10"
dependencies = [
"anyio>=4.8.0",
"click>=8.1.8",
"dap-types==20250315!1.70.post1",
"mcp[cli]>=1.4.0",
]
[project.scripts]
dap-mcp = "dap_mcp.server:main"
[dependency-groups]
dev = [
"debugpy>=1.8.13",
"mypy>=1.15.0",
"pre-commit>=4.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"