-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.1 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
[build-system]
requires = [
"setuptools"
, "wheel"
, "build"
]
build-backend = "setuptools.build_meta"
[project]
name = "randeli"
version = "0.9.0"
authors = [
{name = "Richard Offer", email = "[email protected]"},
]
description = "Augment EPUB & PDFs to aid reading by those who are neurodivergent (ADD/ADHD)."
readme = "README.md"
# Apryse doesn't support 3.12 or later (yet)
requires-python = "<=3.12"
license = {text = "GPLv2"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"requests"
, "click"
, "configobj"
, "event-notifier"
, "fonttools"
, "pydantic"
, "urllib3"
, "bs4"
, "lxml"
, "loguru"
]
[project.urls]
Repository = "https://github.com/badonhill-io/randeli"
[tool.setuptools.dynamic]
version = { file = "VERSION"}
[tool.setuptools]
packages = [
"randeli"
, "randeli.cmds"
, "randeli.cmds.handlers"
, "randeli.cmds.handlers.augment"
, "randeli.librandeli"
, "randeli.librandeli.backend"
, "randeli.policy"
]
[tool.bandit]
exclude_dirs = []
[project.scripts]
randeli = "randeli.cli:cli"