Files
excel-mcp-server/pyproject.toml
2025-04-04 13:21:39 +05:00

26 lines
539 B
TOML

[project]
name = "excel-mcp-server"
version = "0.1.1"
description = "MCP server for Excel file manipulation"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.2.0",
"openpyxl>=3.1.2"
]
[[project.authors]]
name = "haris"
email = "haris.musa@outlook.com"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
excel-mcp-server = "excel_mcp.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/excel_mcp"]
[tool.hatch.build]
packages = ["src/excel_mcp"]