[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastmail-mcp-server"
version = "0.1.0"
description = "Model Context Protocol server for FastMail's JMAP API"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = [
"mcp>=1.0.0",
"httpx>=0.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/fastmail-mcp-server"
Repository = "https://github.com/yourusername/fastmail-mcp-server"
Issues = "https://github.com/yourusername/fastmail-mcp-server/issues"
[project.scripts]
fastmail-mcp-server = "fastmail_mcp_server:main"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]