This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
77 lines (69 loc) · 1.89 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
74
75
76
77
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [
{email = "BuriedInCode@tuta.io", name = "BuriedInCode"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Typing :: Typed"
]
dependencies = [
"esak >= 1.3.2",
"himon >= 0.3.2",
"mokkari >= 2.3.3",
"natsort >= 8.2.0",
"patool >= 1.12",
"pydantic >= 1.10.4",
"rich >= 13.3.1",
"simyan >= 0.13.0",
"tomli >= 2.0.1; python_version < \"3.11\"",
"tomli-w >= 1.0.0",
"xmltodict >= 0.13.0"
]
description = "Unify and organize your comic collection."
dynamic = ["version"]
keywords = ["comic", "comics", "metadata", "tagger", "tagging"]
license = "GPL-3.0-or-later"
name = "dex-starr"
readme = "README.md"
requires-python = ">= 3.8"
[project.optional-dependencies]
cb7 = [
"py7zr >= 0.20.2"
]
dev = [
"pre-commit >= 3.0.3"
]
[project.scripts]
Dex-Starr = "dex_starr.__main__:main"
[project.urls]
Documentation = "https://github.com/Buried-In-Code/Dex-Starr#readme"
Homepage = "https://pypi.org/project/Dex-Starr"
Issues = "https://github.com/Buried-In-Code/Dex-Starr/issues"
Source = "https://github.com/Buried-In-Code/Dex-Starr"
[tool.bandit]
recursive = true
skips = ["B101"]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py38", "py39"]
[tool.hatch.version]
path = "dex_starr/__init__.py"
[tool.isort]
default_section = "THIRDPARTY"
line_length = 100
profile = "black"