diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-26 19:01:50 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-26 19:01:50 +0000 |
commit | 8ac222e304fdd59394725d27e82168a95eadaf1c (patch) | |
tree | c5cfd3f5ff09cc095c1c25620b4ff6887e77243c /scipy/test/setup_scipy_test.py | |
parent | ed8548a9686b70995ff1afdefbba437d84134d08 (diff) | |
download | numpy-8ac222e304fdd59394725d27e82168a95eadaf1c.tar.gz |
Adding weave and test
Diffstat (limited to 'scipy/test/setup_scipy_test.py')
-rwxr-xr-x | scipy/test/setup_scipy_test.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scipy/test/setup_scipy_test.py b/scipy/test/setup_scipy_test.py new file mode 100755 index 000000000..6495ffa90 --- /dev/null +++ b/scipy/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() + ) |