-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
46 lines (38 loc) · 1.21 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
39
40
41
42
43
44
45
46
[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 = "[email protected]"}]
maintainers = [{name = "Bram Geron", email = "[email protected]"}]
license = {text = "MIT/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.6"
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"
[tool.setuptools.packages.find]
include = ["diff_pdf_visually*"]
[requires]
python_version = ['3.9', '3.10', '3.11', '3.12', '3.13']
[build-system]
requires = ['hatchling']
build-backend = "hatchling.build"
[tool.hatch.version]
path = 'diff_pdf_visually/__init__.py'
[tool.hatch.commands]
prerelease = 'hatch build'