diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2005-12-26 07:49:25 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2005-12-26 07:49:25 +0000 |
commit | a1d00598a3a406e965cd3e07a6ebf95e4c50198b (patch) | |
tree | 069b66cab8bd31be325de284bbb8603595271a11 /scipy/testing/setup.py | |
parent | 36e55fb0bfd3f55f2ece8cbf68a7b912df6de9e6 (diff) | |
download | numpy-a1d00598a3a406e965cd3e07a6ebf95e4c50198b.tar.gz |
Renamed scipy.test module to scipy.testing. Clean up testing.
Diffstat (limited to 'scipy/testing/setup.py')
-rwxr-xr-x | scipy/testing/setup.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scipy/testing/setup.py b/scipy/testing/setup.py new file mode 100755 index 000000000..0f7764f07 --- /dev/null +++ b/scipy/testing/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +def configuration(parent_package='',top_path=None): + from scipy.distutils.misc_util import Configuration + config = Configuration('testing',parent_package,top_path) + return config + +if __name__ == '__main__': + from scipy.distutils.core import setup + setup(maintainer = "SciPy Developers", + maintainer_email = "scipy-dev@scipy.org", + description = "SciPy test module", + url = "http://www.scipy.org", + license = "SciPy License (BSD Style)", + **configuration(top_path='').todict() + ) |