summaryrefslogtreecommitdiff
path: root/numpy/numarray/setupscons.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/numarray/setupscons.py')
-rw-r--r--numpy/numarray/setupscons.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/numpy/numarray/setupscons.py b/numpy/numarray/setupscons.py
deleted file mode 100644
index 173612ae8..000000000
--- a/numpy/numarray/setupscons.py
+++ /dev/null
@@ -1,14 +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('include/numpy/')
- config.add_sconscript('SConstruct', source_files = ['_capi.c'])
-
- return config
-
-if __name__ == '__main__':
- from numpy.distutils.core import setup
- setup(configuration=configuration)