[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pr-review-mcp"
version = "1.0.0"
description = "MCP server for managing GitHub PR review comments"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Your Name", email = "your.email@example.com" }
]
keywords = ["mcp", "github", "pull-request", "review", "automation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=0.9.0",
]
[project.urls]
Homepage = "https://github.com/UtakataKyosui/PR-Review-Resolve-MCP"
Repository = "https://github.com/UtakataKyosui/PR-Review-Resolve-MCP"
Issues = "https://github.com/UtakataKyosui/PR-Review-Resolve-MCP/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
]
[project.scripts]
pr-review-mcp = "pr_review_mcp.server:run"
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.1.0",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
asyncio_mode = "auto"