From f1cca04886d4f63f7b1ed5b382986af3a9ee6a61 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Fri, 4 Aug 2006 23:32:12 +0000 Subject: Many name-changes in oldnumeric. This may break some numpy code that was using the oldnumeric interface. --- numpy/dft/setup.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 numpy/dft/setup.py (limited to 'numpy/dft/setup.py') diff --git a/numpy/dft/setup.py b/numpy/dft/setup.py deleted file mode 100644 index 2ec72619f..000000000 --- a/numpy/dft/setup.py +++ /dev/null @@ -1,20 +0,0 @@ - -from os.path import join - -def configuration(parent_package='',top_path=None): - from numpy.distutils.misc_util import Configuration - config = Configuration('dft',parent_package,top_path) - - config.add_data_dir('tests') - - # Configure fftpack_lite - config.add_extension('fftpack_lite', - sources=['fftpack_litemodule.c', 'fftpack.c'] - ) - - - return config - -if __name__ == '__main__': - from numpy.distutils.core import setup - setup(**configuration(top_path='').todict()) -- cgit v1.2.1