pyproject.toml•1.45 kB
[project]
name = "gerrit-review-mcp"
version = "0.1.0"
description = "MCP server for Gerrit Code Review"
authors = [{name = "Omer Cayirtepe", email = "cayirtepeomer@gmail.com"}]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"mcp[cli]>=1.6.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
"testcontainers>=3.7.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
exclude = [
"tests/",
".changeset/",
".env*",
".git*",
"*.md",
"Dockerfile",
"smithery.yaml",
"uv.lock"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--strict-markers",
"--strict-config",
"-ra",
]
markers = [
"integration: marks tests as integration tests",
"docker: marks tests that require Docker",
]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.mypy]
strict = true