diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2008-02-09 00:45:11 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2008-02-09 00:45:11 +0000 |
commit | fbc211df7a2ebd27efe45cf4f943e21f5ad9b104 (patch) | |
tree | 9cea7049a873c0cd38bda75a5a5fe8d2d401b4fd /numpy/testing/setupscons.py | |
parent | a2df3f7818deaf51d08b8bd9095e05d1011b46a5 (diff) | |
parent | d42ab1598a44cb00bffcc907605013eca012dbf9 (diff) | |
download | numpy-fbc211df7a2ebd27efe45cf4f943e21f5ad9b104.tar.gz |
Merge maskedarray branch up to r4776.
Diffstat (limited to 'numpy/testing/setupscons.py')
-rwxr-xr-x | numpy/testing/setupscons.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/numpy/testing/setupscons.py b/numpy/testing/setupscons.py new file mode 100755 index 000000000..ad248d27f --- /dev/null +++ b/numpy/testing/setupscons.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + config = Configuration('testing',parent_package,top_path) + return config + +if __name__ == '__main__': + from numpy.distutils.core import setup + setup(maintainer = "NumPy Developers", + maintainer_email = "numpy-dev@numpy.org", + description = "NumPy test module", + url = "http://www.numpy.org", + license = "NumPy License (BSD Style)", + configuration = configuration, + ) |