-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 785 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 785 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
[project]
name = "xpydf"
version = "0.1.6"
authors = [
{ name = "Matthijs Wesseling", email = "matthijs.wesseling@bigdatarepublic.nl" },
]
description = "Python wrapper around the pdftotext and pdfimages functionalities of xpdf."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"numpy>=1.21.6",
]
[project.urls]
"Homepage" = "https://github.com/Bladieblah/xpdf-python"
"Bug Tracker" = "https://github.com/Bladieblah/xpdf-python/issues"
[build-system]
requires = [
"setuptools>=42",
"numpy>=1.21.6",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120