diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2012-11-05 20:47:23 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2012-11-05 20:47:56 +0100 |
commit | 58c1bf7f6171e774197784787e98125ae2f6f349 (patch) | |
tree | 4fe437990b4a29233ac5aa5d74d7d955fe1ec0e9 /setup.py | |
parent | 526b7647ad3e0c295340e7b85593364eeadc5686 (diff) | |
download | numpy-58c1bf7f6171e774197784787e98125ae2f6f349.tar.gz |
BUG: fix download link in setup.py (which is shown on PyPi).
Closes Trac ticket 2243.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -48,14 +48,14 @@ MAINTAINER_EMAIL = "numpy-discussion@scipy.org" DESCRIPTION = DOCLINES[0] LONG_DESCRIPTION = "\n".join(DOCLINES[2:]) URL = "http://numpy.scipy.org" -DOWNLOAD_URL = "http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103" +DOWNLOAD_URL = "http://sourceforge.net/projects/numpy/files/NumPy/" LICENSE = 'BSD' CLASSIFIERS = filter(None, CLASSIFIERS.split('\n')) AUTHOR = "Travis E. Oliphant, et.al." AUTHOR_EMAIL = "oliphant@enthought.com" PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"] -MAJOR = 1 -MINOR = 8 +MAJOR = 1 +MINOR = 8 MICRO = 0 ISRELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) |