[project]
name = "py-todoist-mcp"
version = "0.1.0"
description = "A Python MCP server for Todoist integration"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastmcp>=0.4.0",
"todoist-api-python>=3.0.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1.0",
"pytest>=8.0",
"pytest-cov>=6.0",
"pytest-timeout>=2.0",
"mypy>=1.13",
]
[project.scripts]
todoist-mcp = "todoist_mcp.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/todoist_mcp"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = []
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-m 'not integration'"
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
]
[tool.mypy]
python_version = "3.13"
strict = true