-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.59 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "jdocmunch-mcp"
version = "1.120.0"
description = "Token-efficient MCP server for structured documentation retrieval via section-level indexing"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "J. Gravelle", email = "j@gravelle.us" },
]
dependencies = [
"mcp>=1.10.0,<2.0.0",
"httpx>=0.27.0",
"pathspec>=0.12.0",
"pyyaml>=6.0",
"watchfiles>=0.21.0",
]
[project.urls]
Homepage = "https://github.com/jgravelle/jdocmunch-mcp"
Repository = "https://github.com/jgravelle/jdocmunch-mcp"
"Bug Tracker" = "https://github.com/jgravelle/jdocmunch-mcp/issues"
[project.optional-dependencies]
anthropic = ["anthropic>=0.40.0"]
gemini = ["google-generativeai>=0.8.0"]
openai = ["openai>=1.0.0"]
minimax = ["openai>=1.0.0"]
zhipu = ["openai>=1.0.0"]
semantic = ["google-generativeai>=0.8.0"]
office = ["markitdown[pdf,docx,pptx]>=0.1.6"]
[project.scripts]
jdocmunch-mcp = "jdocmunch_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/jdocmunch_mcp"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
# Test-only. numpy stays an OPTIONAL runtime dependency, lazily imported by
# the vectorized semantic-search path in storage/doc_store.py; without it
# here, the tests asserting that path agrees with the pure-Python reference
# skipped on every CI run, and a divergence between the two would have
# shipped unnoticed.
"numpy>=1.24.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"