summaryrefslogtreecommitdiff
path: root/scipy/testing/setup_scipy_test.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2005-12-26 07:49:25 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2005-12-26 07:49:25 +0000
commita1d00598a3a406e965cd3e07a6ebf95e4c50198b (patch)
tree069b66cab8bd31be325de284bbb8603595271a11 /scipy/testing/setup_scipy_test.py
parent36e55fb0bfd3f55f2ece8cbf68a7b912df6de9e6 (diff)
downloadnumpy-a1d00598a3a406e965cd3e07a6ebf95e4c50198b.tar.gz
Renamed scipy.test module to scipy.testing. Clean up testing.
Diffstat (limited to 'scipy/testing/setup_scipy_test.py')
-rwxr-xr-xscipy/testing/setup_scipy_test.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/scipy/testing/setup_scipy_test.py b/scipy/testing/setup_scipy_test.py
new file mode 100755
index 000000000..6495ffa90
--- /dev/null
+++ b/scipy/testing/setup_scipy_test.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+
+import os
+from scipy_distutils.misc_util import default_config_dict
+
+def configuration(parent_package='',parent_path=None):
+ package = 'scipy_test'
+ config = default_config_dict(package,parent_package)
+ return config
+
+if __name__ == '__main__':
+ from scipy_test_version import scipy_test_version
+ print 'scipy_test Version',scipy_test_version
+ from scipy_distutils.core import setup
+ setup(version = scipy_test_version,
+ maintainer = "SciPy Developers",
+ maintainer_email = "scipy-dev@scipy.org",
+ description = "SciPy test module",
+ url = "http://www.scipy.org",
+ license = "SciPy License (BSD Style)",
+ **configuration()
+ )