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/oldnumeric | |
parent | 38bd49de8052aa6347bc6b8f1d09e98e38e122a0 (diff) | |
download | numpy-2bcb222f37f7c4912ee6e5f99c75e25beceb7de7.tar.gz |
Add setupscons.py for pure python packages
Diffstat (limited to 'numpy/oldnumeric')
-rw-r--r-- | numpy/oldnumeric/setupscons.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/numpy/oldnumeric/setupscons.py b/numpy/oldnumeric/setupscons.py new file mode 100644 index 000000000..82e8a6201 --- /dev/null +++ b/numpy/oldnumeric/setupscons.py @@ -0,0 +1,8 @@ + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + return Configuration('oldnumeric',parent_package,top_path) + +if __name__ == '__main__': + from numpy.distutils.core import setup + setup(configuration=configuration) |