diff options
author | David Cournapeau <cournape@gmail.com> | 2008-01-07 02:44:56 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-01-07 02:44:56 +0000 |
commit | 2bcb222f37f7c4912ee6e5f99c75e25beceb7de7 (patch) | |
tree | bb5896480e2a4f9c017cefef2b54b53ef8560e3d /numpy/testing | |
parent | 38bd49de8052aa6347bc6b8f1d09e98e38e122a0 (diff) | |
download | numpy-2bcb222f37f7c4912ee6e5f99c75e25beceb7de7.tar.gz |
Add setupscons.py for pure python packages
Diffstat (limited to 'numpy/testing')
-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, + ) |