pyproject.toml•1.11 kB
[project]
name = "topdesk-mcp"
version = "0.8.1"
description = "MCP server for TOPdesk API using FastMCP and TOPdeskPy SDK"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastmcp",
"requests",
"markitdown"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
allow-insecure-host = [
"pypi.org",
"files.pythonhosted.org"
]
[project.scripts]
topdesk-mcp = "topdesk_mcp.main:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
markers = [
"integration: marks tests as integration tests",
"unit: marks tests as unit tests",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[tool.coverage.run]
source = ["topdesk_mcp"]
omit = ["tests/*", "**/__init__.py"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"pass",
]