summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorRobert Kern <robert.kern@gmail.com>2008-08-01 20:38:16 +0000
committerRobert Kern <robert.kern@gmail.com>2008-08-01 20:38:16 +0000
commit4957e5ed4ef51beb8687e64c4f9c5315602d86aa (patch)
treeaa188326e2008e5ae08d6257b69413de75820d51 /setup.py
parent12cfaa0bf758a78d854e917f357ac2913d4e73c6 (diff)
downloadnumpy-4957e5ed4ef51beb8687e64c4f9c5315602d86aa.tar.gz
BUG: Fix email addresses.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index e6238b2d1..bf83a91f3 100755
--- a/setup.py
+++ b/setup.py
@@ -76,7 +76,7 @@ def setup_package():
setup(
name = 'numpy',
maintainer = "NumPy Developers",
- maintainer_email = "numpy-discussion@lists.sourceforge.net",
+ maintainer_email = "numpy-discussion@scipy.org",
description = DOCLINES[0],
long_description = "\n".join(DOCLINES[2:]),
url = "http://numpy.scipy.org",
@@ -84,7 +84,7 @@ def setup_package():
license = 'BSD',
classifiers=filter(None, CLASSIFIERS.split('\n')),
author = "Travis E. Oliphant, et.al.",
- author_email = "oliphant@ee.byu.edu",
+ author_email = "oliphant@enthought.com",
platforms = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
configuration=configuration )
finally: