-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 775 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 775 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-impose"
version = "0.1.1"
authors = [
{ name="Manuel", email="manuellucastrauss@gmx.at" },
]
description = "A professional Python library for PDF imposition, resizing, and tiling."
readme = "README.md"
license-files = ["LICENSE"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics :: Presentation",
]
dependencies = [
"pymupdf>=1.23.0",
"Pillow>=12.3.0"
]
[project.urls]
"Homepage" = "https://github.com/ManuYT-dev/py-impose"
"Bug Tracker" = "https://github.com/ManuYT-dev/py-impose/issues"
[tool.setuptools.packages.find]
where = ["src"]