[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "office-word-mcp-server"
version = "1.0.0"
description = "MCP server for manipulating Microsoft Word documents"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "GongRzhe", email = "gongrzhe@gmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
dependencies = [
"python-docx>=0.8.11",
"mcp[cli]>=1.3.0",
]
[project.urls]
"Homepage" = "https://github.com/GongRzhe/Office-Word-MCP-Server.git"
"Bug Tracker" = "https://github.com/GongRzhe/Office-Word-MCP-Server.git/issues"
[tool.hatch.build.targets.wheel]
only-include = ["word_server.py"]
sources = ["."]
[project.scripts]
word_mcp_server = "word_server:main"