-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (31 loc) · 978 Bytes
/
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
[build-system]
requires = [ "flit_core >=3.2,<4" ]
build-backend = "flit_core.buildapi"
[project]
name = "pypdf-cli"
version = "1.0.1"
authors = [ { name = "Tobias Lass", email = "[email protected]" } ]
description = "A Python-based CLI that allows for comfortable every-day PDF manipulation with pypdf."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
dependencies = [
"click>=8.0.3",
"pypdf>=3.1.0",
"setuptools>=68.2.2",
]
license = { file = "LICENSE" }
keywords = [ "pdf", "cli", "pypdf", "click" ]
[project.urls]
"Homepage" = "https://github.com/tobi208/pypdf-cli"
"Bug Tracker" = "https://github.com/tobi208/pypdf-cli/issues"
[project.scripts]
pypdf-cli = "pypdf_cli:cli"
[project.optional-dependencies]
test = [ "pytest>=7.0.0" ]
[tool.pytest.ini_options]
pythonpath = [ "src" ]