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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pygittools-mcp"
version = "0.1.0"
description = "MCP server exposing pygittools task boards to AI clients."
requires-python = ">=3.11"
dependencies = [
"pygittools>=0.2.1",
"mcp>=1.28.0",
]
[project.scripts]
pygittools-mcp = "pygittools_mcp.mcp_server:main"
[tool.setuptools]
packages = ["pygittools_mcp"]
[tool.setuptools.package-dir]
pygittools_mcp = "."
[tool.uv.sources]
pygittools = { workspace = true }