[project]
name = "git-mcp-extensions"
version = "0.0.1"
description = "Kamiwaza extensions repository for kamiwazaai"
authors = [{ name = "Kamiwaza Engineering", email = "eng@kamiwaza.ai" }]
readme = "README.md"
keywords = ['python', 'kamiwaza', 'extensions']
requires-python = ">=3.10,<3.13"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Repository = "https://github.com/kamiwaza-internal/git-mcp-extensions"
[dependency-groups]
dev = [
"pytest>=7.2.0",
"pytest-cov>=4.0.0",
"pre-commit>=2.20.0",
"tox-uv>=1.11.3",
"deptry>=0.23.0",
"mypy>=0.991",
"kamiwaza-sdk>=0.5.2,<0.6.0",
"ruff>=0.11.5",
"mkdocs>=1.4.2",
"mkdocs-material>=8.5.10",
"mkdocstrings[python]>=0.26.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["git_mcp_extensions"]
[tool.mypy]
files = ["git_mcp_extensions"]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_return_any = true
warn_unused_ignores = true
show_error_codes = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 120
fix = true
[tool.ruff.lint]
select = [
# flake8-2020
"YTT",
# flake8-bandit
"S",
# flake8-bugbear
"B",
# flake8-builtins
"A",
# flake8-comprehensions
"C4",
# flake8-debugger
"T10",
# flake8-simplify
"SIM",
# isort
"I",
# mccabe
"C90",
# pycodestyle
"E", "W",
# pyflakes
"F",
# pygrep-hooks
"PGH",
# pyupgrade
"UP",
# ruff
"RUF",
# tryceratops
"TRY",
]
ignore = [
# LineTooLong
"E501",
# DoNotAssignLambda
"E731",
# BroadException
"TRY003",
]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101"]
[tool.ruff.format]
preview = true
[tool.coverage.run]
branch = true
source = ["apps/*/backend", "services/*/backend", "services/*/src", "tools/*/src"]
[tool.coverage.report]
skip_empty = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if TYPE_CHECKING:",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@abstractmethod",
]