diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:33:12 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 17:33:12 +0000 |
commit | 8057b2d910a5a6726a666a2c18ac495dbb9e6000 (patch) | |
tree | e8ab5a397e9d2d1fd3885f3524821587ee2d407c /numpy/dft/setup.py | |
parent | da9c6da4a304d240492b653f526b9607b032921c (diff) | |
download | numpy-8057b2d910a5a6726a666a2c18ac495dbb9e6000.tar.gz |
rename sub-packages
Diffstat (limited to 'numpy/dft/setup.py')
-rw-r--r-- | numpy/dft/setup.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/numpy/dft/setup.py b/numpy/dft/setup.py new file mode 100644 index 000000000..5ff44f37f --- /dev/null +++ b/numpy/dft/setup.py @@ -0,0 +1,20 @@ + +from os.path import join + +def configuration(parent_package='',top_path=None): + from scipy.distutils.misc_util import Configuration + config = Configuration('corefft',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 scipy.distutils.core import setup + setup(**configuration(top_path='').todict()) |