forked from jen6/ticktick-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 705 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 705 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ticktick-mcp"
version = "0.1.0"
description = "MCP server for interacting with the TickTick API."
authors = [
{ name="jen6", email="work.jen6@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"anyio>=4.9.0",
"mcp>=1.6.0",
"python-dotenv>=1.1.0",
"ticktick-py",
"tzlocal>=5.3.1",
]
[project.scripts]
ticktick-mcp = "main:main"
[project.urls]
"Homepage" = "https://github.com/jen6/ticktick-mcp"
[tool.uv.sources]
ticktick-py = { git = "https://github.com/jen6/ticktick-py.git", rev = "main" }
[dependency-groups]
dev = [
"pytest>=8.3.5",
]