20 lines
538 B
Python
20 lines
538 B
Python
from os.path import join
|
|
import warnings
|
|
import numpy
|
|
|
|
|
|
def configuration(parent_package='', top_path=None):
|
|
from numpy.distutils.misc_util import Configuration
|
|
from numpy.distutils.system_info import get_info, get_standard_file, BlasNotFoundError
|
|
|
|
config = Configuration('preprocessing', parent_package, top_path)
|
|
|
|
config.add_subpackage('tests')
|
|
config.add_subpackage('sparse')
|
|
|
|
return config
|
|
|
|
if __name__ == '__main__':
|
|
from numpy.distutils.core import setup
|
|
setup(**configuration(top_path='').todict())
|