summaryrefslogtreecommitdiff
path: root/numpy/numarray/setup.py
diff options
context:
space:
mode:
authorchanley <chanley@gmail.com>2006-06-26 21:43:23 +0000
committerchanley <chanley@gmail.com>2006-06-26 21:43:23 +0000
commita73855cf27d42778e31f7cdbb0be5f54131c27df (patch)
tree61578e014e41c27855e18553cdafd2315d52cce1 /numpy/numarray/setup.py
parentbc7a2ecaade93a802543c7494427b7b8b73820ae (diff)
downloadnumpy-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.py4
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']