-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 839 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (27 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[project]
name = "vibe-debug"
version = "0.2.2"
description = "Agent-friendly debugger CLI and MCP server for inspecting live runtime state."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["mcp", "debugger", "debugpy", "dap", "coding-agent", "codex", "claude-code"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Debuggers",
]
dependencies = [
"debugpy>=1.8.0",
]
[project.scripts]
vibe-debug = "vibe_debug.cli:main"
vibe-debug-server = "vibe_debug.mcp_server:main"
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"