-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.11 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
[project]
name = "cpp-style-guide-mcp"
version = "0.1.0"
description = "C++ 编码规范检查和最佳实践建议的 MCP 服务器"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE" }
keywords = ["mcp", "cpp", "c++", "coding-standards", "style-guide", "linter", "code-review"]
authors = [
{ name = "LV5 Railgun" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Code Generators",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"mcp[cli]>=1.21.0",
"smithery>=0.3.1",
]
[project.urls]
Homepage = "https://github.com/lv5railgun/cpp_guidelines"
Repository = "https://github.com/lv5railgun/cpp_guidelines"
Issues = "https://github.com/lv5railgun/cpp_guidelines/issues"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cpp_style"]
py-modules = ["cpp_style_server"]