-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.5 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
[project]
name = "WebtoonScraper"
description = "Scraping webtoons with ease"
readme = "README.md"
authors = [{ name = "ilotoki0804", email = "ilotoki0804@gmail.com" }]
license = "Apache-2.0"
keywords = [
"webtoon",
"webtoon scraper",
"naver webtoon",
"webtoon downloader",
"download webtoon",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.11"
dependencies = [
"filetype>=1.2.0",
"httpc~=0.13.0",
"pyfilename~=0.6.0",
"rich>=13.8.0",
"yarl>=1.9.11",
"pillow>=10.4.0",
"fieldenum~=0.2.0",
]
dynamic = ["version"]
[project.optional-dependencies]
full = []
[project.scripts]
WebtoonScraper = "WebtoonScraper.__main__:main"
webtoon = "WebtoonScraper.__main__:main"
[project.urls]
Documentation = "https://docs.wbtn.org/ko/latest/"
Repository = "https://github.com/ilotoki0804/WebtoonScraper"
Changelog = "https://docs.wbtn.org/ko/latest/releases/"
Funding = "https://www.patreon.com/ilotoki0804"
[tool.hatch.version]
path = "WebtoonScraper/base.py"
[tool.hatch.build.targets.wheel]
packages = ["WebtoonScraper"]
[tool.uv]
dev-dependencies = [
"ipykernel>=6.29.5",
"pytest>=8.3.2",
]
[tool.ruff]
target-version = "py311"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"