diff options
author | cookedm <cookedm@localhost> | 2006-07-06 16:57:20 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-07-06 16:57:20 +0000 |
commit | 6782a92fd1a7625ee48f6b2946a7d7149ab28a77 (patch) | |
tree | 177a92f0673655b58b247e663477af06ac1192b6 /numpy/numarray/setup.py | |
parent | 216f071ab060a6f08c22666aea33f7095f079d1e (diff) | |
download | numpy-6782a92fd1a7625ee48f6b2946a7d7149ab28a77.tar.gz |
Branch numpy.distutils to distutils-revamp
Diffstat (limited to 'numpy/numarray/setup.py')
-rw-r--r-- | numpy/numarray/setup.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/numpy/numarray/setup.py b/numpy/numarray/setup.py deleted file mode 100644 index 39fc40152..000000000 --- a/numpy/numarray/setup.py +++ /dev/null @@ -1,19 +0,0 @@ - -from os.path import join - -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/') - - # Configure fftpack_lite - config.add_extension('_capi', - sources=['_capi.c'] - ) - - return config - -if __name__ == '__main__': - from numpy.distutils.core import setup - setup(**configuration(top_path='').todict()) |