-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (101 loc) · 2.62 KB
/
Copy pathpyproject.toml
File metadata and controls
113 lines (101 loc) · 2.62 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "code-review-mcp"
version = "2.0.0"
description = "MCP Server for GitHub/GitLab code review - enables AI assistants to review pull requests and merge requests"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Code Review MCP Contributors" }
]
maintainers = [
{ name = "Code Review MCP Contributors" }
]
keywords = [
"mcp",
"model-context-protocol",
"code-review",
"github",
"gitlab",
"pull-request",
"merge-request",
"cursor",
"claude",
"ai"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Version Control :: Git",
]
requires-python = ">=3.10"
dependencies = [
"mcp>=2.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"click>=8.0.0",
"uvicorn>=0.30.0",
"starlette>=0.38.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.5.0",
"mypy>=1.10.0",
]
[project.urls]
Homepage = "https://github.com/OldJii/code-review-mcp"
Documentation = "https://github.com/OldJii/code-review-mcp#readme"
Repository = "https://github.com/OldJii/code-review-mcp.git"
Issues = "https://github.com/OldJii/code-review-mcp/issues"
Changelog = "https://github.com/OldJii/code-review-mcp/blob/main/CHANGELOG.md"
[project.scripts]
code-review-mcp = "code_review_mcp.cli:cli"
[project.entry-points."code_review_mcp.commands"]
server = "code_review_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/code_review_mcp"]
include = ["src/code_review_mcp/rules/*.mdc"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
"/CHANGELOG.md",
]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_decorators = false
disallow_untyped_calls = false
[[tool.mypy.overrides]]
module = [
"mcp.*",
"httpx",
"click",
"uvicorn",
"starlette.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]