pyproject.toml•987 B
[project]
name = "taskbeacon-mcp"
version = "0.1.7"
description = "A model contexture protocal (MCP) for TaskBeacon"
authors = [
{ name = "Zhipeng Cao", email = "zhipeng30@foxmail.com" }
]
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"httpx",
"GitPython",
"mcp[cli]",
"ruamel.yaml",
"edge_tts",
"fuzzywuzz",
]
keywords = ["taskbeacon", "mcp", "uv", "TaskBeacon"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/TaskBeacon/taskbeacon-mcp"
Repository = "https://github.com/TaskBeacon/taskbeacon-mcp"
"Bug Tracker" = "https://github.com/TaskBeacon/taskbeacon-mcp/issues"
[project.scripts]
taskbeacon-mcp = "taskbeacon_mcp.main:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.uv]
# This belongs here, not under [project]
required-version = ">=0.8.3"