diff options
author | Jarrod Millman <millman@berkeley.edu> | 2008-02-08 10:12:16 +0000 |
---|---|---|
committer | Jarrod Millman <millman@berkeley.edu> | 2008-02-08 10:12:16 +0000 |
commit | 0b7800b455b3aaf50cb83a224f283e72f1dea951 (patch) | |
tree | aab6281c88fd6bed7c74df03562c197d934edd83 /numpy/distutils/setupscons.py | |
parent | 964727a2c475a7e48e262efc52b51345f51f2522 (diff) | |
parent | fb3f711f1a1eafb2895a84a80f88814d7fb9a465 (diff) | |
download | numpy-0b7800b455b3aaf50cb83a224f283e72f1dea951.tar.gz |
merging David Cournapeau's build_with_scons branch, which adds scons support to numpy.distutils and modifies the configuration of numpy/core
Diffstat (limited to 'numpy/distutils/setupscons.py')
-rw-r--r-- | numpy/distutils/setupscons.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/numpy/distutils/setupscons.py b/numpy/distutils/setupscons.py new file mode 100644 index 000000000..b16225f41 --- /dev/null +++ b/numpy/distutils/setupscons.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python + +def configuration(parent_package='',top_path=None): + from numpy.distutils.misc_util import Configuration + config = Configuration('distutils',parent_package,top_path) + config.add_subpackage('command') + config.add_subpackage('fcompiler') + config.add_data_dir('tests') + config.add_data_files('site.cfg') + config.make_config_py() + return config + +if __name__ == '__main__': + from numpy.distutils.core import setup + setup(configuration=configuration) |