-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 857 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 857 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
31
32
33
34
35
36
37
38
39
40
[project]
name = "mcp-symbol-edit"
version = "2025.10.10.000001"
description = "Symbol-based code editing for MCP"
readme = "README.md"
authors = [
{ name="Rune Kaagaard" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license-files = ["LICENSE"]
requires-python = ">=3.13"
dependencies = [
"mcp[cli]>=1.17.0",
"tree-sitter>=0.25.2",
"tree-sitter-language-pack>=0.10.0",
]
[project.scripts]
mcp-symbol-edit = "mcp_symbol_edit.server:main"
[project.urls]
Homepage = "https://github.com/runekaagaard/mcp-symbol-edit"
Issues = "https://github.com/runekaagaard/mcp-symbol-edit/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[dependency-groups]
dev = [
"build>=1.3.0",
"hatchling>=1.27.0",
"pytest>=8.4.2",
]