-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
51 lines (45 loc) · 1.27 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "0.15"
name = "pdftitle"
dependencies = [
"pdfminer.six>=20240706",
]
requires-python = ">= 3.8"
authors = [
{name = "Mete Balci", email = "[email protected]"},
]
description = "pdftitle is a small utility to extract the title from a PDF file"
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ["pdf", "title", "text", "extract"]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Utilities',
'Programming Language :: Python :: 3.8',
]
[project.optional-dependencies]
dev = [
"setuptools >= 61.0",
"black",
"pylint",
"build",
"twine",
"reuse"
]
[project.scripts]
pdftitle = "pdftitle:run"
[project.urls]
Homepage = "https://github.com/metebalci/pdftitle"
Documentation = "https://github.com/metebalci/pdftitle"
Repository = "https://github.com/metebalci/pdftitle.git"
Issues = "https://github.com/metebalci/pdftitle/issues"
Changelog = "https://github.com/metebalci/pdftitle/blob/master/CHANGELOG.md"
[tool.setuptools]
packages = ["pdftitle"]
[tool.pylint]
disable = "unknown-option-value"