MCPcopy Create free account
hub / github.com/numpy/numpy / configuration

Function configuration

numpy/lib/setup.py:1–8  ·  view source on GitHub ↗
(parent_package='',top_path=None)

Source from the content-addressed store, hash-verified

1def configuration(parent_package='',top_path=None):
2 from numpy.distutils.misc_util import Configuration
3
4 config = Configuration('lib', parent_package, top_path)
5 config.add_subpackage('tests')
6 config.add_data_dir('tests/data')
7 config.add_data_files('*.pyi')
8 return config
9
10if __name__ == '__main__':
11 from numpy.distutils.core import setup

Callers

nothing calls this directly

Calls 4

add_subpackageMethod · 0.95
add_data_dirMethod · 0.95
add_data_filesMethod · 0.95
ConfigurationClass · 0.90

Tested by

no test coverage detected