[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-server-office"
version = "0.2.0"
description = "A Model Context Protocol server providing tools to read/write docx files"
authors = [{name = "famano"}]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp[cli]>=1.2.0",
"python-docx>=1.1.2",
]
[project.scripts]
mcp-server-office = "mcp_server_office.__main__:main"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
]
[tool.pytest.ini_options]
asyncio_mode = "strict"