Initial commit

This commit is contained in:
Haris Musa
2025-02-16 22:39:18 +05:00
parent 09f4b2acb3
commit 4e82b8a7b2
18 changed files with 3200 additions and 0 deletions

26
pyproject.toml Normal file
View File

@ -0,0 +1,26 @@
[project]
name = "excel-mcp-server"
version = "0.1.0"
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"]