mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
36 lines
862 B
TOML
36 lines
862 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "code-index-mcp"
|
|
version = "2.9.4"
|
|
description = "Code indexing and analysis tools for LLMs using MCP"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "johnhuang316"}
|
|
]
|
|
dependencies = [
|
|
"mcp>=1.21.0,<2.0.0",
|
|
"watchdog>=3.0.0",
|
|
"tree-sitter>=0.20.0",
|
|
"tree-sitter-javascript>=0.20.0",
|
|
"tree-sitter-typescript>=0.20.0",
|
|
"tree-sitter-java>=0.20.0",
|
|
"tree-sitter-zig>=0.20.0",
|
|
"pathspec>=0.12.1",
|
|
"msgpack>=1.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/johnhuang316/code-index-mcp"
|
|
"Bug Tracker" = "https://github.com/johnhuang316/code-index-mcp/issues"
|
|
|
|
[project.scripts]
|
|
code-index-mcp = "code_index_mcp.server:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|