summaryrefslogtreecommitdiff
path: root/numpy/dft
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-01-04 17:47:13 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-01-04 17:47:13 +0000
commitc14d4fe25cb5cd482369734dd487ac8f376851c9 (patch)
treeebd088e5ccb2ca8162b53f1c443c6de303e9abe7 /numpy/dft
parent3496a3cda8ea70253a76ed17c0af261f2d645fe2 (diff)
downloadnumpy-c14d4fe25cb5cd482369734dd487ac8f376851c9.tar.gz
Change most setup.py files
Diffstat (limited to 'numpy/dft')
-rw-r--r--numpy/dft/setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/dft/setup.py b/numpy/dft/setup.py
index 5ff44f37f..2ec72619f 100644
--- a/numpy/dft/setup.py
+++ b/numpy/dft/setup.py
@@ -2,8 +2,8 @@
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)
+ from numpy.distutils.misc_util import Configuration
+ config = Configuration('dft',parent_package,top_path)
config.add_data_dir('tests')
@@ -16,5 +16,5 @@ def configuration(parent_package='',top_path=None):
return config
if __name__ == '__main__':
- from scipy.distutils.core import setup
+ from numpy.distutils.core import setup
setup(**configuration(top_path='').todict())