-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.26 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
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "pdfstitcher"
version = "1.0.4"
description = "The open source PDF stitching software for sewists, by sewists."
readme = "README.md"
requires-python = ">=3.8, <3.13"
license = {file = "LICENSE"}
keywords = ["pdf", "sewing", "utility", "stitch", "n-up", "page imposition"]
authors = [
{name = "Charlotte Curtis"},
{email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent"
]
dependencies = [
"pikepdf >= 9.1.1",
"Babel",
"PyYAML",
"appdirs",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pre-commit",
"black"
]
gui = [
"wxPython >= 4.2",
"requests",
"pdf-mangler",
"psutil",
]
[project.urls]
homepage = "https://www.pdfstitcher.org/"
repository = "https://github.com/cfcurtis/pdfstitcher"
[project.gui-scripts]
pdfstitcher-gui = "pdfstitcher.gui.app:main"
[project.scripts]
pdfstitcher = "pdfstitcher.cli.app:main"
[tool.setuptools.packages.find]
include = ["pdfstitcher", "pdfstitcher.*"]
[build-system]
requires = ["setuptools", "Babel"]
# use legacy to force setup.py to run
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100