15 lines
446 B
Python
15 lines
446 B
Python
def configuration(parent_package='', top_path=None):
|
|
import numpy
|
|
from numpy.distutils.misc_util import Configuration
|
|
|
|
config = Configuration('numpy_popcount',
|
|
parent_package,
|
|
top_path)
|
|
config.add_extension('numpy_popcount', ['numpy_popcount.c'])
|
|
|
|
return config
|
|
|
|
if __name__ == "__main__":
|
|
from numpy.distutils.core import setup
|
|
setup(configuration=configuration)
|