-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-codebase-index"
version = "0.7.1"
description = "Structural codebase indexer with MCP server for AI-assisted development"
requires-python = ">=3.11"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Michael Doyle"},
]
keywords = ["mcp", "codebase", "indexer", "code-navigation", "structural-analysis"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
]
dependencies = []
[project.optional-dependencies]
mcp = ["mcp>=1.0"]
dev = ["pytest>=8.0", "ruff>=0.5"]
benchmark = ["aiohttp>=3.9"]
[project.scripts]
mcp-codebase-index = "mcp_codebase_index.server:main_sync"
[project.urls]
Homepage = "https://github.com/MikeRecognex/mcp-codebase-index"
Repository = "https://github.com/MikeRecognex/mcp-codebase-index"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_codebase_index"]
[tool.pytest.ini_options]
testpaths = ["tests"]
timeout = 30
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.mypy]
python_version = "3.11"
strict = true