-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (85 loc) · 2.45 KB
/
pyproject.toml
File metadata and controls
96 lines (85 loc) · 2.45 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "code-graph-mcp"
version = "1.2.3"
description = "MCP server for multi-language code graph intelligence and analysis across 25+ programming languages"
readme = "README.md"
authors = [
{ name = "entrepeneur4lyf", email = "shawn.payments@gmail.com" }
]
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"mcp>=1.12.2",
"ast-grep-py>=0.39.0",
"anyio>=4.0.0",
"click>=8.0.0",
"rustworkx>=0.15.0",
"watchdog>=6.0.0",
]
keywords = [
"mcp", "code-analysis", "ast", "claude-code", "graph", "intelligence",
"python", "code-quality", "complexity-analysis", "static-analysis"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Text Processing :: Linguistic",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
test = [
"pytest>=7.0.0",
"pytest-asyncio>=0.23.0",
]
[project.urls]
Homepage = "https://github.com/entrepeneur4lyf/code-graph-mcp"
Repository = "https://github.com/entrepeneur4lyf/code-graph-mcp"
Documentation = "https://github.com/entrepeneur4lyf/code-graph-mcp#readme"
Changelog = "https://github.com/entrepeneur4lyf/code-graph-mcp/releases"
Issues = "https://github.com/entrepeneur4lyf/code-graph-mcp/issues"
[project.scripts]
code-graph-mcp = "code_graph_mcp:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/code_graph_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/pyproject.toml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "C90"]
ignore = ["E501"] # Line too long (handled by formatter)
[tool.black]
target-version = ["py312"]
line-length = 100
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"twine>=6.1.0",
]