From 882b1f31b110079bd9f18d1a23d5697f78bf0920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Fri, 30 Oct 2015 16:26:08 +0100 Subject: [PATCH] update setup.py and bump version --- gallery_dl/__init__.py | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/gallery_dl/__init__.py b/gallery_dl/__init__.py index fc696489..a957744b 100644 --- a/gallery_dl/__init__.py +++ b/gallery_dl/__init__.py @@ -10,7 +10,7 @@ __author__ = "Mike Fährmann" __copyright__ = "Copyright 2014, 2015 Mike Fährmann" __license__ = "GPLv2" -__version__ = "0.3" +__version__ = "0.3.1" __maintainer__ = "Mike Fährmann" __email__ = "mike_faehrmann@web.de" diff --git a/setup.py b/setup.py index a65215bf..b00eca04 100644 --- a/setup.py +++ b/setup.py @@ -8,15 +8,16 @@ except ImportError: setup( name="gallery_dl", - version="0.3", + version="0.3.1", description="gallery- and image downloader", long_description="download image galleries from several image hosting platforms", url="https://github.com/mikf/gallery-dl", + download_url="https://codeload.github.com/mikf/gallery-dl/zip/v0.3.1", author="Mike Fährmann", author_email="mike_faehrmann@web.de", license="GPLv2", install_requires=[ - "requests >= 2.0", + "requests >= 2.4.2", ], scripts=[ "bin/gallery-dl",