-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
73 lines (66 loc) · 1.54 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling>=1.8.0"]
build-backend = "hatchling.build"
[project]
name = "linkrot"
dynamic = ["version"]
description = "Extract metadata and URLs from PDF files"
readme = "README.md"
license = "GPL-3.0-or-later"
requires-python = ">=3.8"
authors = [
{ name = "Marshal Miller", email = "marshal@rottingresearch.org" },
]
keywords = [
"pdf",
"reference",
"linkrot",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
dependencies = [
"PyMuPDF==1.25.1",
"chardet==5.2.0",
"lxml==5.3.0",
]
[project.optional-dependencies]
dev = [
"black==24.10.0",
"coverage==7.6.9",
"flake8==7.1.1",
"mccabe<=0.7.0",
"mypy==1.14.1",
"pylint==3.3.3",
"pytest==8.3.4",
"build==1.2.2.post1",
"mega.py==1.0.8",
]
test = [
"pytest==8.3.4",
"mega.py==1.0.8",
]
[project.urls]
Homepage = "https://github.com/rottingresearch/linkrot"
[tool.hatch.version]
path = "linkrot/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/linkrot",
]
[tool.hatch.build.targets.wheel]
packages = [
"/linkrot",
]
[project.scripts]
linkrot= "linkrot.cli:main"