Skip to content

Commit

Permalink
fix download url
Browse files Browse the repository at this point in the history
  • Loading branch information
F483 committed Sep 20, 2015
1 parent c3ecec3 commit 7b0982f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
from setuptools import setup, find_packages

exec(open('dataserv/version.py').read()) # load __version__
DOWNLOAD_BASEURL = "https://pypi.python.org/packages/3.4/d/dataserv/"
DOWNLOAD_URL = DOWNLOAD_BASEURL + "dataserv-%s-py2.py3-none-any.whl" % __version__ # NOQA
DOWNLOAD_URL = "%(baseurl)s/%(name)s/%(name)s-%(version)s-py2.py3-none-any.whl" % {
'baseurl': "https://pypi.python.org/packages/3.4/d",
'name': 'dataserv',
'version': __version__ # NOQA
}


setup(
Expand Down

0 comments on commit 7b0982f

Please sign in to comment.