diff options
author | cookedm <cookedm@localhost> | 2006-04-21 16:15:12 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-04-21 16:15:12 +0000 |
commit | 2276bf7935c28385511fa3a11abe11a975a76c81 (patch) | |
tree | 2740578c9521059b291343ad8ee1e7f79098c331 /setup.py | |
parent | 73bff2a400a2453bc387f2ed882c9ded88d89c12 (diff) | |
download | numpy-2276bf7935c28385511fa3a11abe11a975a76c81.tar.gz |
Use correct download url in setup.py so that setuptool's easy_install would
be able to download the source correctly.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ def setup_package(): description = DOCLINES[0], long_description = "\n".join(DOCLINES[2:]), url = "http://numeric.scipy.org", - download_url = "http://sourceforge.net/projects/numpy", + download_url = "http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103", license = 'BSD', classifiers=filter(None, CLASSIFIERS.split('\n')), author = "Travis E. Oliphant, et.al.", |