22 lines
482 B
TOML
22 lines
482 B
TOML
[build-system]
|
||
requires = ["setuptools>=61.0"]
|
||
build-backend = "setuptools.build_meta"
|
||
|
||
[project]
|
||
name = "mcp-server-demo"
|
||
version = "0.1.0"
|
||
description = "MCP Excel 分析服务(pandas 沙箱,Docker 隔离部署)"
|
||
requires-python = ">=3.12"
|
||
dependencies = [
|
||
"mcp>=1.27.2",
|
||
"python-dotenv>=1.0.0",
|
||
"httpx>=0.28.0",
|
||
"uvicorn>=0.48.0",
|
||
"pandas>=2.0.0",
|
||
"openpyxl>=3.1.0",
|
||
"xlrd>=2.0.1",
|
||
]
|
||
|
||
[tool.setuptools]
|
||
py-modules = ["server", "excel_analyzer"]
|