diff options
author | Robert Kern <robert.kern@gmail.com> | 2008-08-01 20:38:16 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2008-08-01 20:38:16 +0000 |
commit | 4957e5ed4ef51beb8687e64c4f9c5315602d86aa (patch) | |
tree | aa188326e2008e5ae08d6257b69413de75820d51 /setup.py | |
parent | 12cfaa0bf758a78d854e917f357ac2913d4e73c6 (diff) | |
download | numpy-4957e5ed4ef51beb8687e64c4f9c5315602d86aa.tar.gz |
BUG: Fix email addresses.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |