39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
|
|
def configuration(parent_package='', top_path=None):
|
|
import numpy
|
|
from numpy.distutils.misc_util import Configuration
|
|
|
|
config = Configuration('csgraph', parent_package, top_path)
|
|
|
|
config.add_data_dir('tests')
|
|
|
|
config.add_extension('_shortest_path',
|
|
sources=['_shortest_path.c'],
|
|
include_dirs=[numpy.get_include()])
|
|
|
|
config.add_extension('_traversal',
|
|
sources=['_traversal.c'],
|
|
include_dirs=[numpy.get_include()])
|
|
|
|
config.add_extension('_min_spanning_tree',
|
|
sources=['_min_spanning_tree.c'],
|
|
include_dirs=[numpy.get_include()])
|
|
|
|
config.add_extension('_matching',
|
|
sources=['_matching.c'],
|
|
include_dirs=[numpy.get_include()])
|
|
|
|
config.add_extension('_flow',
|
|
sources=['_flow.c'],
|
|
include_dirs=[numpy.get_include()])
|
|
|
|
config.add_extension('_reordering',
|
|
sources=['_reordering.c'],
|
|
include_dirs=[numpy.get_include()])
|
|
|
|
config.add_extension('_tools',
|
|
sources=['_tools.c'],
|
|
include_dirs=[numpy.get_include()])
|
|
|
|
return config
|