-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 766 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 766 Bytes
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
[project]
name = "magic-pdf"
version = "0.1.0"
description = "MCP server for comprehensive PDF manipulation"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.0.0",
"pypdf>=4.0.0",
"reportlab>=4.0.0",
"Pillow>=10.0.0",
"python-docx>=1.0.0",
"openpyxl>=3.1.0",
"python-pptx>=0.6.23",
"markdown>=3.5.0",
"xhtml2pdf>=0.2.13",
"PyMuPDF>=1.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
markers = [
"libreoffice: tests requiring LibreOffice to be installed",
]
[project.scripts]
magic-pdf = "magic_pdf.server:main"