-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (67 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
72 lines (67 loc) · 1.84 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "java-codebase-rag"
version = "0.2.1"
description = "MCP server for semantic + structural search over Java codebases"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "HumanBean17" },
]
keywords = ["mcp", "java", "rag", "code-search", "graph", "lancedb", "kuzu"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"cocoindex[lancedb]>=1.0.0a43,<2",
"kuzu>=0.11.3,<0.12",
"lancedb>=0.25.3,<0.31",
"mcp>=1.27.0,<2",
"numpy>=1.26.4,<2.5",
"pathspec>=1.0.4,<2",
"pyarrow>=23.0.1,<24",
"PyYAML>=6.0.3,<7",
"sentence-transformers>=5.4.0,<6",
"tree-sitter>=0.25.2,<0.26",
"tree-sitter-java>=0.23.5,<0.24",
"unidiff>=0.7.3,<1",
]
[project.urls]
Homepage = "https://github.com/HumanBean17/java-codebase-rag"
Repository = "https://github.com/HumanBean17/java-codebase-rag"
Issues = "https://github.com/HumanBean17/java-codebase-rag/issues"
[project.scripts]
java-codebase-rag = "java_codebase_rag.cli:main"
java-codebase-rag-mcp = "server:main"
[tool.setuptools]
packages = ["java_codebase_rag"]
py-modules = [
"ast_java",
"brownfield_events",
"build_ast_graph",
"chunk_heuristics",
"graph_enrich",
"index_common",
"java_index_flow_lancedb",
"java_index_v1_common",
"java_ontology",
"kuzu_queries",
"mcp_hints",
"mcp_v2",
"path_filtering",
"pr_analysis",
"search_lancedb",
"server",
]
[tool.ruff]
line-length = 100
target-version = "py311"