From f7f3de7be2448d57111bd9c47d46253f6a0e5d3d Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Mon, 7 Jan 2008 02:46:49 +0000 Subject: numarray now builds with scons --- numpy/numarray/setupscons.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 numpy/numarray/setupscons.py (limited to 'numpy/numarray/setupscons.py') diff --git a/numpy/numarray/setupscons.py b/numpy/numarray/setupscons.py new file mode 100644 index 000000000..37d53a8ef --- /dev/null +++ b/numpy/numarray/setupscons.py @@ -0,0 +1,14 @@ +from os.path import join + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + config = Configuration('numarray',parent_package,top_path) + + config.add_data_files('numpy/') + config.add_sconscript('SConstruct', source_files = ['_capi.c']) + + return config + +if __name__ == '__main__': + from numpy.distutils.core import setup + setup(configuration=configuration) -- cgit v1.2.1