From 4f3c3755d9fcbfd9ce0551c19bb893e7ba73db91 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Tue, 20 Jun 2006 05:38:29 +0000 Subject: Add missing setup.py --- numpy/numarray/setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 numpy/numarray/setup.py (limited to 'numpy/numarray') diff --git a/numpy/numarray/setup.py b/numpy/numarray/setup.py new file mode 100644 index 000000000..37571bec1 --- /dev/null +++ b/numpy/numarray/setup.py @@ -0,0 +1,19 @@ + +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('include/numarray/*.h') + + # Configure fftpack_lite + config.add_extension('_capi', + sources=['_capi.c'] + ) + + return config + +if __name__ == '__main__': + from numpy.distutils.core import setup + setup(**configuration(top_path='').todict()) -- cgit v1.2.1