-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (94 loc) · 2.79 KB
/
pyproject.toml
File metadata and controls
100 lines (94 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "excel-mcp-server-fastmcp"
version = "1.16.0"
description = "Excel MCP Server based on FastMCP and openpyxl"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "tangjian", email = "406158101@qq.com"},
]
keywords = ["mcp", "excel", "openpyxl", "game-development", "configuration", "ai", "fastmcp"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"openpyxl>=3.1.0,<4.0.0",
"python-calamine>=0.3.0",
"mcp>=1.0.0,<2.0.0",
"xlcalculator>=0.5.0,<1.0.0",
"sqlglot>=27.29.0,<28.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
excel-mcp-server-fastmcp = "excel_mcp_server_fastmcp:main"
[project.urls]
Homepage = "https://github.com/TangentDomain/excel-mcp-server"
Repository = "https://github.com/TangentDomain/excel-mcp-server"
Issues = "https://github.com/TangentDomain/excel-mcp-server/issues"
PyPI = "https://pypi.org/project/excel-mcp-server-fastmcp/"
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-xdist>=3.5.0",
"pytest-timeout>=2.3.0",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0,<1.0.0",
"pytest-cov>=6.2.1,<7.0.0",
"pytest-mock>=3.14.0,<4.0.0",
"pytest-xdist>=3.5.0,<4.0.0",
"pytest-timeout>=2.3.0,<3.0.0",
"pytest-benchmark>=4.0.0,<5.0.0",
"coverage>=7.10.4,<8.0.0",
"psutil>=5.9.0,<6.0.0",
"memory-profiler>=0.61.0,<1.0.0",
"black>=24.0.0,<25.0.0",
"isort>=5.13.0,<6.0.0",
"flake8>=7.0.0,<8.0.0",
"mypy>=1.10.0,<2.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--tb=short",
"--strict-markers",
"--color=yes",
"--maxfail=10",
"--durations=10",
]
markers = [
"slow: 标记测试为慢速测试",
"integration: 标记集成测试",
"security: 标记安全功能测试",
"unit: 标记单元测试",
"performance: 标记性能测试",
"api: 标记API测试",
"core: 标记核心模块测试",
"utils: 标记工具模块测试",
"xdist_group: pytest-xdist 并行分组",
"timeout: 超时限制",
]
norecursedirs = [
".git", ".tox", "dist", "build", "*.egg",
".venv", "venv", "env", "__pycache__", ".pytest_cache", "htmlcov",
]
timeout = 600
timeout_method = "thread"
minversion = "6.0"