scikit-learn/sklearn/externals/setup.py

10 lines
256 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2011-11-21 04:16:52 +08:00
def configuration(parent_package='', top_path=None):
from numpy.distutils.misc_util import Configuration
2011-11-21 04:16:52 +08:00
config = Configuration('externals', parent_package, top_path)
config.add_subpackage('joblib')
return config