-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (81 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
88 lines (81 loc) · 1.76 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
83
84
85
86
87
88
[project]
name = "ComicGUISpider"
version = "2.10.0-beta.2"
description = "GUI Comic Downloader"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx[http2]",
"dnspython",
"jsonpath_rw",
"aiofiles",
"colorama",
"loguru",
"lxml",
"PySide6>=6.11,<6.12",
"PyYAML",
"tqdm",
"brotli",
"markdown",
"PyExecJS",
"PySide6-Fluent-Widgets",
"polib",
"pillow-avif-plugin",
"uv",
"uncurl",
"urllib3>=2.5.0",
"Pillow>=11.3.0",
"Scrapy>=2.13.0",
"setuptools>=78.1.1",
"h11>=0.16.0",
"requests>=2.32.4",
"psutil",
"redis",
"pandas",
"curl-cffi>=0.14.0",
"retry>=0.9.2",
]
authors = [
{name = "jsoneri", email = "jsoneri@outlook.com"},
]
keywords = ["comic", "spider", "downloader", "gui"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
script = [
"redis",
"pandas",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = [
"assets/",
"ComicSpider/",
"deploy/",
"GUI/",
"utils/",
"variables/",
"custom/",
"docs/public/*.png",
"CGS.py",
"crawl_only.py",
"scrapy.cfg"
]
[tool.hatch.metadata]
allow-direct-references = true
[project.urls]
Repository = "https://github.com/jasoneri/ComicGUISpider"
Documentation = "https://cgs.101114105.xyz/"
Changelog = "https://cgs.101114105.xyz/changelog/history"
Releases = "https://github.com/jasoneri/ComicGUISpider/releases"
[project.scripts]
cgs-cli = "crawl_only:main"
[project.gui-scripts]
cgs = "CGS:start"
comicguispider = "CGS:start"