diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2007-01-26 04:16:37 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2007-01-26 04:16:37 +0000 |
commit | 37953a567622b540ea5970ad8a29ed16ae6a5969 (patch) | |
tree | 78ad26601a9b1fae28b08c8f812a8234af945fe8 /numpy/testing/setup.py | |
parent | d7c5a1ec074074f94f929c0c3c77beb827e7eb05 (diff) | |
download | numpy-37953a567622b540ea5970ad8a29ed16ae6a5969.tar.gz |
remove some remaining references to scipy. fixes #428
Diffstat (limited to 'numpy/testing/setup.py')
-rwxr-xr-x | numpy/testing/setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/testing/setup.py b/numpy/testing/setup.py index 96647f84e..e84dcb292 100755 --- a/numpy/testing/setup.py +++ b/numpy/testing/setup.py @@ -7,10 +7,10 @@ def configuration(parent_package='',top_path=None): if __name__ == '__main__': from numpy.distutils.core import setup - setup(maintainer = "SciPy Developers", + setup(maintainer = "NumPy Developers", maintainer_email = "numpy-dev@numpy.org", - description = "SciPy test module", + description = "NumPy test module", url = "http://www.numpy.org", - license = "SciPy License (BSD Style)", + license = "NumPy License (BSD Style)", **configuration(top_path='').todict() ) |