-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1.15 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 = "diff-pdf-visually"
description = "Quickly check whether there is a visible difference between two PDFs, using ImageMagick and pdftocairo."
readme = "README.rst"
authors = [{name = "Bram Geron", email = "bram@bram.xyz"}]
maintainers = [{name = "Bram Geron", email = "bram@bram.xyz"}]
license = "MIT OR Apache-2.0"
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
]
dependencies = []
requires-python = ">=3.8"
dynamic = ["version"]
[project.optional-dependencies]
test = [
"coverage",
"pytest",
]
[project.urls]
Homepage = "https://github.com/bgeron/diff-pdf-visually"
Source = "https://github.com/bgeron/diff-pdf-visually"
[project.scripts]
diff-pdf-visually = "diff_pdf_visually.__main__:main"
[requires]
python_version = ['3.9', '3.10', '3.11', '3.12', '3.13']
[build-system]
requires = ['hatchling>=1.26.1']
build-backend = "hatchling.build"
[tool.hatch.version]
path = 'diff_pdf_visually/__init__.py'
[tool.hatch.commands]
prerelease = 'hatch build'