diff options
author | chanley <chanley@gmail.com> | 2006-06-26 21:43:23 +0000 |
---|---|---|
committer | chanley <chanley@gmail.com> | 2006-06-26 21:43:23 +0000 |
commit | a73855cf27d42778e31f7cdbb0be5f54131c27df (patch) | |
tree | 61578e014e41c27855e18553cdafd2315d52cce1 /numpy/numarray/setup.py | |
parent | bc7a2ecaade93a802543c7494427b7b8b73820ae (diff) | |
download | numpy-a73855cf27d42778e31f7cdbb0be5f54131c27df.tar.gz |
Renamed numpy/numarray/numpy directory to numpy/numarray/numpy_numarray to be consistent with setup file and usage instructions. Modified _capi.c to use the new directory name.
Diffstat (limited to 'numpy/numarray/setup.py')
-rw-r--r-- | numpy/numarray/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/numarray/setup.py b/numpy/numarray/setup.py index f24e61a7c..5e7a9bf29 100644 --- a/numpy/numarray/setup.py +++ b/numpy/numarray/setup.py @@ -5,8 +5,8 @@ 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('numpy_numarray/') - + config.add_data_files('numpy_numarray/*.h') + # Configure fftpack_lite config.add_extension('_capi', sources=['_capi.c'] |