Skip to content

Commit cd452eb

Browse files
Adding config files
1 parent 1aaade5 commit cd452eb

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

pyproject.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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*"]

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from setuptools import setup
2+
3+
setup()

0 commit comments

Comments
 (0)