forked from jgravelle/jcodemunch-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 993 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 993 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
41
42
[project]
name = "jcodemunch-mcp"
version = "1.1.5"
description = "Token-efficient MCP server for source code exploration via tree-sitter AST parsing"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.10.0,<2.0.0",
"httpx>=0.27.0",
"tree-sitter-language-pack>=0.7.0,<1.0.0",
"pathspec>=0.12.0",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.40.0"]
gemini = ["google-generativeai>=0.8.0"]
all = ["anthropic>=0.40.0", "google-generativeai>=0.8.0"]
test = ["pytest", "pytest-asyncio", "pytest-cov"]
[project.scripts]
jcodemunch-mcp = "jcodemunch_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/jcodemunch_mcp"]
[tool.hatch.build.targets.sdist]
exclude = [".claude/"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
]