File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools>=61.0" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " code-analysis-mcp-server"
7+ version = " 0.1.0"
8+ description = " MCP Server for Code Analysis Tools"
9+ readme = " README.md"
10+ requires-python = " >=3.12.8,<3.13"
11+ license = {text = " MIT" }
12+ authors = [
13+ {
name =
" Your Name" ,
email =
" [email protected] " }
14+ ]
15+ dependencies = [
16+ " pip==25.0.1" ,
17+ " uvicorn==0.34.1" ,
18+ " starlette==0.46.2" ,
19+ " PyYAML==6.0.2" ,
20+ " ast-grep-py==0.37.0" ,
21+ " fastmcp==2.1.2" ,
22+ ]
23+
24+ [project .scripts ]
25+ code-analysis-server = " src.server:main"
26+
27+ [tool .setuptools .packages .find ]
28+ where = [" ." ]
29+ include = [" src*" ]
Original file line number Diff line number Diff line change 1+ from setuptools import setup
2+
3+ setup ()
You can’t perform that action at this time.
0 commit comments