(parent_package='', top_path=None)
| 109 | """ |
| 110 | |
| 111 | def configuration(parent_package='', top_path=None): |
| 112 | from numpy.distutils.misc_util import Configuration |
| 113 | |
| 114 | config = Configuration(None, parent_package, top_path) |
| 115 | config.set_options(ignore_setup_xxx_py=True, |
| 116 | assume_default_configuration=True, |
| 117 | delegate_options_to_subpackages=True, |
| 118 | quiet=True) |
| 119 | |
| 120 | config.add_subpackage('numpy') |
| 121 | config.add_data_files(('numpy', 'LICENSE.txt')) |
| 122 | config.add_data_files(('numpy', 'numpy/*.pxd')) |
| 123 | |
| 124 | config.get_version('numpy/version.py') # sets config.version |
| 125 | |
| 126 | return config |
| 127 | |
| 128 | |
| 129 | def check_submodules(): |
nothing calls this directly
no test coverage detected