pyproject.toml•1.21 kB
[project]
name = "mcp-git-commit-generator"
version = "2.1.0"
description = "Generate conventional commit messages from your staged git changes using Model Context Protocol (MCP)."
authors = [{ name = "Theoklitos Bampouris", email = "th.bampouris@gmail.com" }]
license = { text = "MIT" }
maintainers = [
{ name = "Theoklitos Bampouris", email = "th.bampouris@gmail.com" },
]
keywords = [
"mcp",
"model context protocol",
"git",
"commit",
"conventional commits",
"conventional commit messages",
]
readme = "README.md"
requires-python = ">=3.13.5"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = ["click>=8.2.1", "mcp[cli]>=1.10.1"]
[dependency-groups]
dev = ["debugpy>=1.8.14", "pre-commit>=4.2.0", "pytest>=8.4.1"]
[project.scripts]
mcp-git-commit-generator = "mcp_git_commit_generator:main"
[project.urls]
Homepage = "https://github.com/theoklitosBam7/mcp-git-commit-generator"
Issues = "https://github.com/theoklitosBam7/mcp-git-commit-generator/issues"
[build-system]
requires = ["uv_build >= 0.7.19, <0.9.0"]
build-backend = "uv_build"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]