diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-14 18:55:03 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-14 18:55:03 +0000 |
commit | 951cdad1a9b0a15b673bf56aecc1fef5066061f3 (patch) | |
tree | f307f0f2ebf404526fcc671958e8ea836b53baf9 /test/setup_scipy_test.py | |
parent | c261078e9c2d8fd958bf8b3758cdd07add5fc2e3 (diff) | |
download | numpy-951cdad1a9b0a15b673bf56aecc1fef5066061f3.tar.gz |
renamed directories
Diffstat (limited to 'test/setup_scipy_test.py')
-rwxr-xr-x | test/setup_scipy_test.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/setup_scipy_test.py b/test/setup_scipy_test.py new file mode 100755 index 000000000..6495ffa90 --- /dev/null +++ b/test/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() + ) |