-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.03 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
54
55
56
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ticktick-access"
version = "0.2.0"
description = "CLI and MCP Server for TickTick task management"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"click>=8.0.0",
"httpx",
"mcp",
"pydantic",
"pyyaml>=6.0",
"requests",
]
[project.scripts]
ticktick = "ticktick.cli:cli"
ticktick-mcp = "ticktick.mcp.server:run_server"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"respx",
"ruff",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["ticktick*"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"W", # pycodestyle warnings
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"E501", # Line too long (handled by formatter)
]