-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.2 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "img-lurker"
dynamic = ["version"]
description = "Web gallery downloader"
readme = "README.md"
license = "WTFPL"
requires-python = ">=3.6"
keywords = [
"image",
"photo",
"spider",
"crawling",
"download",
"gallery",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Multimedia :: Graphics",
"Topic :: System :: Archiving",
"Topic :: Utilities",
]
dependencies = [
"woob",
"Pillow",
]
[[project.authors]]
name = "Hg"
email = "[email protected]"
[project.scripts]
img-lurker = "img_lurker:main"
[project.urls]
Homepage = "https://gitlab.com/hydrargyrum/img-lurker/"
[tool.hatch.version]
path = "img_lurker.py"