mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-10 02:24:35 +08:00
Refactor code structure for improved readability and maintainability
This commit is contained in:
35
reference/code-index-mcp-master/pyproject.toml
Normal file
35
reference/code-index-mcp-master/pyproject.toml
Normal file
@@ -0,0 +1,35 @@
|
||||
[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"}
|
||||
Reference in New Issue
Block a user