-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.24 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
[build-system]
requires = ["uv_build>=0.9.10,<0.10.0"]
build-backend = "uv_build"
[project]
name = "pdfitdown"
version = "2.0.3"
authors = [
{name = "Clelia Astra Bertelli", email = "astraberte9@gmail.com"}
]
description = "PdfItDown - Convert Everything to PDF"
readme = "README.md"
requires-python = ">=3.10,<3.14"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
'markdown-pdf>=1.7,<1.8',
'img2pdf>=0.6.3,<1',
'pillow>=11.2.1,<12',
"markitdown[docx,pdf,pptx,xls,xlsx]>=0.1.4,<0.2",
"typer>=0.20.0",
]
[project.urls]
Homepage = "https://github.com/AstraBert/PdfItDown"
Issues = "https://github.com/AstraBert/PdfItDown/issues"
[project.scripts]
pdfitdown = "pdfitdown.cli.app:app"
[tool.uv.build-backend]
module-name = "pdfitdown"
[project.optional-dependencies]
server = [
"httpx>=0.28.1,<1",
"python-multipart>=0.0.20",
"starlette>=0.46.2",
]
[dependency-groups]
dev = [
"pre-commit>=4.5.0",
"pytest>=9.0.1",
"ruff>=0.11.8",
"ty>=0.0.1a27",
]
[tool.uv.sources]
pdfitdown-docs = {workspace = true}
pdfitdown = {workspace = true}
pdfitdown-mcp = {workspace = true}
[tool.uv.workspace]
members = ["packages/*"]