-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "taskbeacon-mcp"
version = "0.1.8"
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",
# Bugfix: the code imports `fuzzywuzzy`, not `fuzzywuzz`.
"fuzzywuzzy",
]
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.server:main"
[project.optional-dependencies]
dev = [
"pytest",
]
[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"
[tool.setuptools]
packages = { find = { exclude = ["tests*"] } }
[tool.setuptools.package-data]
taskbeacon_mcp = ["prompts/*.md"]