-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[project]
name = "mcp-git-commit-generator"
version = "2.2.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.14.0"
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"]