-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (33 loc) · 1.09 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pdf-essentials"
version = "0.0.3"
authors = [{name="Oren Halvani"}]
description = "An easy-to-use Python library for annotating, manipulating and processing PDF files"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"PyMuPDF==1.24.9",
"ghostscript==0.7",
"matplotlib==3.8.3",
"pikepdf==9.1.1",
"PyPDF2==3.0.1",
"reportlab==4.2.2",
"webcolors==1.13"
]
keywords = ["pdf-converter", "pdf-manipulation", "pdf-merger", "pdf-crop-margins", "pdf-manipulation-utitilies", "pdf-redaction", "pdf-highlighting", "pdf-annotation"]
[project.urls]
"Homepage" = "https://github.com/Halvani/pdf-essentials"
"Bug Tracker" = "https://github.com/Halvani/pdf-essentials/issues"