Skip to content

Commit

Permalink
update setup.py and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mikf committed Nov 3, 2015
1 parent c0efea3 commit 950bebf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gallery_dl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
__copyright__ = "Copyright 2014, 2015 Mike Fährmann"

__license__ = "GPLv2"
__version__ = "0.3.1"
__version__ = "0.3.2"
__maintainer__ = "Mike Fährmann"
__email__ = "[email protected]"

Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import os.path

try:
from setuptools import setup
except ImportError:
from distutils.core import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name="gallery_dl",
version="0.3.1",
version="0.3.2",
description="gallery- and image downloader",
long_description="download image galleries from several image hosting platforms",
long_description=read("README.rst"),
url="https://github.com/mikf/gallery-dl",
download_url="https://codeload.github.com/mikf/gallery-dl/zip/v0.3.1",
download_url="https://codeload.github.com/mikf/gallery-dl/zip/v0.3.2",
author="Mike Fährmann",
author_email="[email protected]",
license="GPLv2",
Expand Down

0 comments on commit 950bebf

Please sign in to comment.