diff options
Diffstat (limited to 'servers/taskwarrior/pyproject.toml')
| -rw-r--r-- | servers/taskwarrior/pyproject.toml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/servers/taskwarrior/pyproject.toml b/servers/taskwarrior/pyproject.toml new file mode 100644 index 0000000..20cd72b --- /dev/null +++ b/servers/taskwarrior/pyproject.toml @@ -0,0 +1,35 @@ +[project] +name = "mcp-server-taskwarrior" +version = "0.1.0" +description = "MCP server for TaskWarrior task management" +readme = "README.md" +requires-python = ">=3.11" +license = {text = "MIT"} +authors = [ + {name = "Your Name", email = "your.email@example.com"}, +] +dependencies = [ + "mcp>=1.6.0", + "pydantic>=2.11.0", +] + +[tool.uv] +dev-dependencies = [ + "pytest>=8.3.5", + "pytest-asyncio>=0.26.0", + "pytest-cov>=6.0.0 ", +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = "test_*.py" +python_classes = "Test*" +python_functions = "test_*" +asyncio_mode = "auto" + +[project.scripts] +mcp-taskwarrior = "mcp_server_taskwarrior.cli:run_server" |
