-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.44 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
[project]
name = "mcp-simple-tool"
version = "1.2.0"
description = "MCP工具集合,包含文件处理和网页获取功能"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "aigo666" }]
keywords = ["mcp", "llm", "automation", "web", "fetch", "pdf", "word", "excel", "csv"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"anyio>=4.5",
"click>=8.1.0",
"httpx>=0.27",
"mcp",
"PyPDF2>=3.0.0",
"pdf2image>=1.16.0",
"Pillow>=10.0.0",
"pymupdf4llm==0.0.17",
"PyMuPDF>=1.22.0",
"python-docx>=0.8.11",
"pandas>=2.0.0",
"openpyxl>=3.1.0",
"pytesseract>=0.3.10",
"chardet>=5.0.0",
]
[project.scripts]
mcp-simple-tool = "mcp_tool.server:main"
[project.optional-dependencies]
dev = ["pyright>=1.1.378", "pytest>=8.3.3", "ruff>=0.6.9", "pytest-asyncio>=0.23.5"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["mcp_tool"]
[tool.pyright]
include = ["mcp_tool"]
venvPath = "."
venv = ".venv"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.uv]
dev-dependencies = ["pyright>=1.1.378", "pytest>=8.3.3", "ruff>=0.6.9", "pytest-asyncio>=0.23.5"]