summaryrefslogtreecommitdiff
path: root/numpy/dft/setup.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-04 23:32:12 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-04 23:32:12 +0000
commitf1cca04886d4f63f7b1ed5b382986af3a9ee6a61 (patch)
tree053f566b31cb6edc24a41b800ec7f2972c4bca40 /numpy/dft/setup.py
parent8f26568de7cc97ac0dcedfd5061e08bb54770b61 (diff)
downloadnumpy-f1cca04886d4f63f7b1ed5b382986af3a9ee6a61.tar.gz
Many name-changes in oldnumeric. This may break some numpy code that was using the oldnumeric interface.
Diffstat (limited to 'numpy/dft/setup.py')
-rw-r--r--numpy/dft/setup.py20
1 files changed, 0 insertions, 20 deletions
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())