From 2bcb222f37f7c4912ee6e5f99c75e25beceb7de7 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Mon, 7 Jan 2008 02:44:56 +0000 Subject: Add setupscons.py for pure python packages --- numpy/oldnumeric/setupscons.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 numpy/oldnumeric/setupscons.py (limited to 'numpy/oldnumeric/setupscons.py') 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) -- cgit v1.2.1