From f82cd5c7f7c52a16e6fa6279268551f21188df49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 16 Apr 2015 02:58:59 +0200 Subject: [PATCH] add python egg metadata --- .gitignore | 3 ++- gallery_dl.egg-info/PKG-INFO | 19 ++++++++++++++ gallery_dl.egg-info/SOURCES.txt | 32 ++++++++++++++++++++++++ gallery_dl.egg-info/dependency_links.txt | 1 + gallery_dl.egg-info/entry_points.txt | 3 +++ gallery_dl.egg-info/requires.txt | 1 + gallery_dl.egg-info/top_level.txt | 1 + 7 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 gallery_dl.egg-info/PKG-INFO create mode 100644 gallery_dl.egg-info/SOURCES.txt create mode 100644 gallery_dl.egg-info/dependency_links.txt create mode 100644 gallery_dl.egg-info/entry_points.txt create mode 100644 gallery_dl.egg-info/requires.txt create mode 100644 gallery_dl.egg-info/top_level.txt diff --git a/.gitignore b/.gitignore index 06f5ffc1..12c84c56 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ __pycache__/ *.py[cod] -build/ \ No newline at end of file +build/ +dist/ \ No newline at end of file diff --git a/gallery_dl.egg-info/PKG-INFO b/gallery_dl.egg-info/PKG-INFO new file mode 100644 index 00000000..4f816bd9 --- /dev/null +++ b/gallery_dl.egg-info/PKG-INFO @@ -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 diff --git a/gallery_dl.egg-info/SOURCES.txt b/gallery_dl.egg-info/SOURCES.txt new file mode 100644 index 00000000..2d1b3b91 --- /dev/null +++ b/gallery_dl.egg-info/SOURCES.txt @@ -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 \ No newline at end of file diff --git a/gallery_dl.egg-info/dependency_links.txt b/gallery_dl.egg-info/dependency_links.txt new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/gallery_dl.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/gallery_dl.egg-info/entry_points.txt b/gallery_dl.egg-info/entry_points.txt new file mode 100644 index 00000000..53cf5106 --- /dev/null +++ b/gallery_dl.egg-info/entry_points.txt @@ -0,0 +1,3 @@ +[console_scripts] +gallery-dl = gallery_dl:main + diff --git a/gallery_dl.egg-info/requires.txt b/gallery_dl.egg-info/requires.txt new file mode 100644 index 00000000..d48cd089 --- /dev/null +++ b/gallery_dl.egg-info/requires.txt @@ -0,0 +1 @@ +requests >= 2.0 diff --git a/gallery_dl.egg-info/top_level.txt b/gallery_dl.egg-info/top_level.txt new file mode 100644 index 00000000..9e5039cb --- /dev/null +++ b/gallery_dl.egg-info/top_level.txt @@ -0,0 +1 @@ +gallery_dl