Skip to content

Commit ad97840

Browse files
HumanBean17claude
andcommitted
prepare package for PyPI publishing (v0.1.0)
Add LICENSE, bump version to 0.1.0, add metadata (authors, classifiers, project URLs), and register java-codebase-rag-mcp entry point for the MCP server. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent d775cea commit ad97840

3 files changed

Lines changed: 43 additions & 2 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
AGENTS.md
1+
Read and follow [AGENTS.md](./AGENTS.md) first.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 HumanBean17
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pyproject.toml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,24 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "java-codebase-rag"
7-
version = "0.0.0"
7+
version = "0.1.0"
88
description = "MCP server for semantic + structural search over Java codebases"
99
readme = "README.md"
1010
requires-python = ">=3.11"
11+
license = "MIT"
12+
authors = [
13+
{ name = "HumanBean17" },
14+
]
15+
keywords = ["mcp", "java", "rag", "code-search", "graph", "lancedb", "kuzu"]
16+
classifiers = [
17+
"Development Status :: 3 - Alpha",
18+
"Intended Audience :: Developers",
19+
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
23+
"Topic :: Software Development :: Libraries",
24+
]
1125
dependencies = [
1226
"kuzu>=0.11.3,<0.12",
1327
"lancedb>=0.25.3,<0.31",
@@ -22,8 +36,14 @@ dependencies = [
2236
"unidiff>=0.7.3,<1",
2337
]
2438

39+
[project.urls]
40+
Homepage = "https://github.com/HumanBean17/java-codebase-rag"
41+
Repository = "https://github.com/HumanBean17/java-codebase-rag"
42+
Issues = "https://github.com/HumanBean17/java-codebase-rag/issues"
43+
2544
[project.scripts]
2645
java-codebase-rag = "java_codebase_rag.cli:main"
46+
java-codebase-rag-mcp = "server:main"
2747

2848
[tool.setuptools]
2949
packages = ["java_codebase_rag"]

0 commit comments

Comments
 (0)