summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 28b72259a..b30433691 100755
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,9 @@ interfacing with general-purpose data-base applications.
There are also basic facilities for discrete fourier transform,
basic linear algebra and random number generation.
+
"""
+from __future__ import division
DOCLINES = __doc__.split("\n")
@@ -47,15 +49,15 @@ MAINTAINER = "NumPy Developers"
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"
+URL = "http://www.numpy.org"
+DOWNLOAD_URL = "http://sourceforge.net/projects/numpy/files/NumPy/"
LICENSE = 'BSD'
-CLASSIFIERS = filter(None, CLASSIFIERS.split('\n'))
-AUTHOR = "Travis E. Oliphant, et.al."
+CLASSIFIERS = [_f for _f in CLASSIFIERS.split('\n') if _f]
+AUTHOR = "Travis E. Oliphant et al."
AUTHOR_EMAIL = "oliphant@enthought.com"
PLATFORMS = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"]
-MAJOR = 1
-MINOR = 7
+MAJOR = 1
+MINOR = 8
MICRO = 0
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)