9 lines
256 B
Python
9 lines
256 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def configuration(parent_package='', top_path=None):
|
|
from numpy.distutils.misc_util import Configuration
|
|
config = Configuration('externals', parent_package, top_path)
|
|
config.add_subpackage('joblib')
|
|
|
|
return config
|