mirror of
https://github.com/haris-musa/excel-mcp-server.git
synced 2025-12-08 08:42:30 +08:00
28 lines
568 B
TOML
28 lines
568 B
TOML
[project]
|
|
name = "excel-mcp-server"
|
|
version = "0.1.5"
|
|
description = "Excel MCP Server for manipulating Excel files"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp[cli]>=1.10.1",
|
|
"openpyxl>=3.1.5",
|
|
"typer>=0.16.0"
|
|
]
|
|
[[project.authors]]
|
|
name = "haris"
|
|
email = "haris.musa@outlook.com"
|
|
|
|
[project.scripts]
|
|
excel-mcp-server = "excel_mcp.__main__:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/excel_mcp"]
|
|
|
|
[tool.hatch.build]
|
|
packages = ["src/excel_mcp"]
|