pyproject.toml•532 B
[project]
name = "toggl-mcp"
version = "1.0.0"
description = "FastMCP server for Toggl time tracking data aggregation"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastmcp>=2.12.0",
"pydantic>=2.5.0",
"httpx>=0.25.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"