pyproject.toml•630 B
[project]
name = "ittae-mcp"
version = "0.1.0"
description = "MCP Calendar Server with ADT-based architecture"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.12.3",
"pydantic>=2.0.0",
"python-dateutil>=2.8.2",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.ruff]
line-length = 88
target-version = "py310"