-
Notifications
You must be signed in to change notification settings - Fork 98
/
pyproject.toml
52 lines (47 loc) · 1.38 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pdfannots"
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = ["pdfminer.six >= 20220319"]
description = "Tool to extract and pretty-print PDF annotations for reviewing"
readme = "README.md"
license = {file = "LICENSE.txt"}
authors = [
{name = "Andrew Baumann", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Text Processing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
]
[project.scripts]
pdfannots = "pdfannots.cli:main"
[project.urls]
Homepage = "https://github.com/0xabu/pdfannots"
[tool.hatch.version]
path = "pdfannots/__init__.py"
[tool.mypy]
# strict mode
warn_unused_configs = true
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
no_implicit_reexport = true
strict_equality = true