mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
add python egg metadata
This commit is contained in:
parent
2f447416d2
commit
f82cd5c7f7
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
build/
|
||||
build/
|
||||
dist/
|
19
gallery_dl.egg-info/PKG-INFO
Normal file
19
gallery_dl.egg-info/PKG-INFO
Normal file
@ -0,0 +1,19 @@
|
||||
Metadata-Version: 1.1
|
||||
Name: gallery-dl
|
||||
Version: 0.2
|
||||
Summary: gallery- and image downloader
|
||||
Home-page: https://github.com/mikf/gallery-dl
|
||||
Author: Mike Fährmann
|
||||
Author-email: mike_faehrmann@web.de
|
||||
License: GPLv2
|
||||
Description: download image galleries from several image hosting platforms
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 3 - Alpha
|
||||
Classifier: Environment :: Console
|
||||
Classifier: Intended Audience :: End Users/Desktop
|
||||
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
|
||||
Classifier: Operating System :: POSIX
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3 :: Only
|
||||
Classifier: Topic :: Multimedia
|
||||
Classifier: Topic :: Multimedia :: Graphics
|
32
gallery_dl.egg-info/SOURCES.txt
Normal file
32
gallery_dl.egg-info/SOURCES.txt
Normal file
@ -0,0 +1,32 @@
|
||||
setup.py
|
||||
bin/gallery-dl
|
||||
gallery_dl/__init__.py
|
||||
gallery_dl/download.py
|
||||
gallery_dl.egg-info/PKG-INFO
|
||||
gallery_dl.egg-info/SOURCES.txt
|
||||
gallery_dl.egg-info/dependency_links.txt
|
||||
gallery_dl.egg-info/entry_points.txt
|
||||
gallery_dl.egg-info/requires.txt
|
||||
gallery_dl.egg-info/top_level.txt
|
||||
gallery_dl/downloader/__init__.py
|
||||
gallery_dl/downloader/common.py
|
||||
gallery_dl/downloader/http.py
|
||||
gallery_dl/downloader/https.py
|
||||
gallery_dl/downloader/text.py
|
||||
gallery_dl/extractor/3dbooru.py
|
||||
gallery_dl/extractor/4chan.py
|
||||
gallery_dl/extractor/8chan.py
|
||||
gallery_dl/extractor/__init__.py
|
||||
gallery_dl/extractor/batoto.py
|
||||
gallery_dl/extractor/booru.py
|
||||
gallery_dl/extractor/common.py
|
||||
gallery_dl/extractor/danbooru.py
|
||||
gallery_dl/extractor/e621.py
|
||||
gallery_dl/extractor/exhentai.py
|
||||
gallery_dl/extractor/gelbooru.py
|
||||
gallery_dl/extractor/imagebam.py
|
||||
gallery_dl/extractor/imgbox.py
|
||||
gallery_dl/extractor/imgchili.py
|
||||
gallery_dl/extractor/pixiv.py
|
||||
gallery_dl/extractor/sankaku.py
|
||||
gallery_dl/extractor/yandere.py
|
1
gallery_dl.egg-info/dependency_links.txt
Normal file
1
gallery_dl.egg-info/dependency_links.txt
Normal file
@ -0,0 +1 @@
|
||||
|
3
gallery_dl.egg-info/entry_points.txt
Normal file
3
gallery_dl.egg-info/entry_points.txt
Normal file
@ -0,0 +1,3 @@
|
||||
[console_scripts]
|
||||
gallery-dl = gallery_dl:main
|
||||
|
1
gallery_dl.egg-info/requires.txt
Normal file
1
gallery_dl.egg-info/requires.txt
Normal file
@ -0,0 +1 @@
|
||||
requests >= 2.0
|
1
gallery_dl.egg-info/top_level.txt
Normal file
1
gallery_dl.egg-info/top_level.txt
Normal file
@ -0,0 +1 @@
|
||||
gallery_dl
|
Loading…
Reference in New Issue
Block a user