-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 982 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pdfdelta"
version = "0.1.2"
description = "Visual diff for born-digital PDFs — highlights changes directly on the original pages"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["pdf", "diff", "compare", "highlight", "academic", "paper"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Text Processing :: General",
"Programming Language :: Python :: 3",
]
dependencies = [
"PyMuPDF>=1.24",
]
[project.scripts]
pdfdelta = "pdfdelta.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Homepage = "https://github.com/mli55/pdfdelta"
Repository = "https://github.com/mli55/pdfdelta"
Issues = "https://github.com/mli55/pdfdelta/issues"
Changelog = "https://github.com/mli55/pdfdelta/releases"