-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.27 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
[project]
name = "cropdf"
version = "1.0.0"
description = "Lightweight GUI tool to visually crop PDFs and save as vector PDF. Perfect for extracting figures from textbooks."
authors = [{ name = "Eric Ceglie" }]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
keywords = [
"pdf", "crop", "pdf-cropper", "pdf-crop", "extract", "figure", "image",
"typst", "latex", "textbook", "gui", "vector", "lossless"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing :: General",
]
dependencies = [
"PyMuPDF>=1.20",
]
[project.urls]
Homepage = "https://github.com/ericceg/CroPDF"
Repository = "https://github.com/ericceg/CroPDF"
Issues = "https://github.com/ericceg/CroPDF/issues"
[project.scripts]
cropdf = "cropdf:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["cropdf"]