summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2006-04-21 16:15:12 +0000
committercookedm <cookedm@localhost>2006-04-21 16:15:12 +0000
commit2276bf7935c28385511fa3a11abe11a975a76c81 (patch)
tree2740578c9521059b291343ad8ee1e7f79098c331 /setup.py
parent73bff2a400a2453bc387f2ed882c9ded88d89c12 (diff)
downloadnumpy-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-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b7721cb45..e43ba2c2a 100755
--- a/setup.py
+++ b/setup.py
@@ -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.",