-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
83 lines (68 loc) · 2.12 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
78
79
80
81
82
83
[tool.poetry]
name = "ktoolbox"
version = "v0.10.0"
description = "A useful CLI tool for downloading posts in Kemono.party / .su"
authors = ["Ljzd-PRO <ljzd@office.ljzd-pro.asia>"]
readme = "README.md"
homepage = "https://ktoolbox.readthedocs.io/"
repository = "https://github.com/Ljzd-PRO/KToolBox"
documentation = "https://ktoolbox.readthedocs.io/"
keywords = ["kemono", "kemono.party", "cli-app", "downloader", "os-independent"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Terminals",
]
packages = [{ include = "ktoolbox" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Ljzd-PRO/KToolBox/issues"
[tool.poetry.scripts]
ktoolbox = "ktoolbox.__main__:main"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
pydantic = "^2.4.2"
pydantic-settings = "^2.0.3"
tenacity = "^8.2.3"
httpx = {version=">=0.24.1,<0.28.0", extras=["socks"]}
fire = ">=0.5,<0.7"
tqdm = "^4.66.1"
loguru = "^0.7.2"
aiofiles = "^23.2.1"
pathvalidate = "^3.2.0"
settings-doc = "^4.3.1"
uvloop = {version=">=0.19,<0.22", optional=true}
urwid = [
{version="^2.6.16", optional=true, markers = "sys_platform != 'win32'"},
{version="^2.6.16", extras=["curses"], optional=true, markers = "sys_platform == 'win32'"}
]
[tool.poetry.group.pyinstaller.dependencies]
pyinstaller = "==6.10.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-static-i18n = "^1.2.0"
mkdocs-material = "^9.4.14"
mkdocstrings = {version=">=0.24,<0.27", extras=["python"]}
mike = "^2.0.0"
[tool.poetry.group.test.dependencies]
pytest = "==8.2.1"
pytest-asyncio = "==0.23.5"
pytest-cov = "==4.1.0"
allpairspy = "==2.5.1"
[tool.poetry.group.dev.dependencies]
datamodel-code-generator = ">=0.22.1,<0.24.0"
[tool.poetry.group.pyinstaller]
optional = true
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.test]
optional = true
[tool.poetry.group.dev]
optional = true
[tool.poetry.extras]
uvloop = ["uvloop"]
urwid = ["urwid"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"