(parent_package='', top_path=None)
| 1 | def configuration(parent_package='', top_path=None): |
| 2 | from numpy.distutils.misc_util import Configuration |
| 3 | |
| 4 | config = Configuration('_build_utils', parent_package, top_path) |
| 5 | config.add_data_dir('tests') |
| 6 | return config |
| 7 | |
| 8 | |
| 9 | if __name__ == '__main__': |
no test coverage detected