-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 2.33 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (72 loc) · 2.33 KB
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
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kindle-pdf-annotator"
version = "1.0.2"
description = "Extract Kindle annotations and embed them into PDF files with pixel-perfect positioning"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["kindle", "pdf", "annotations", "highlights", "ebook", "converter"]
authors = [
{name = "Marcin Miłkowski", email = "marcinmilkowski@gmail.com"}
]
maintainers = [
{name = "Marcin Miłkowski", email = "marcinmilkowski@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"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",
"Topic :: Utilities",
"Topic :: Text Processing",
"Topic :: Office/Business",
"Environment :: Console",
"Environment :: X11 Applications",
]
dependencies = [
"PyMuPDF>=1.23.0",
"python-dateutil>=2.8.2",
"chardet>=5.2.0",
"pillow>=10.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"build>=0.10.0",
"twine>=4.0.0",
]
[project.urls]
Homepage = "https://github.com/milekpl/kindle-pdf-annotator"
Repository = "https://github.com/milekpl/kindle-pdf-annotator"
Documentation = "https://github.com/milekpl/kindle-pdf-annotator/blob/main/README.md"
"Bug Tracker" = "https://github.com/milekpl/kindle-pdf-annotator/issues"
[project.scripts]
kindle-pdf-annotator = "kindle_pdf_annotator.cli:main"
kindle-pdf-annotator-gui = "kindle_pdf_annotator.main:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["kindle_pdf_annotator*"]
namespaces = false
[tool.setuptools.package-data]
kindle_pdf_annotator = ["*.txt", "*.md"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.black]
line-length = 100
target-version = ["py38", "py39", "py310", "py311"]
include = '\.pyi?$'