pyproject.toml•648 B
[project]
name = "github-code-review-mcp-server"
version = "0.1.0"
description = "A Model Context Protocol (MCP) server for GitHub code review with read-only access"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
dependencies = [
"mcp-python>=0.1.0",
"PyGithub>=2.0.0",
"gql>=3.0.0",
"requests>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
]
[build-system]
requires = ["setuptools>=42.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts]
github-code-review-mcp = "github_code_review.__main__:main"