13 lines
371 B
Python
13 lines
371 B
Python
|
#!/usr/bin/env python
|
||
|
from __future__ import division, print_function
|
||
|
|
||
|
|
||
|
def configuration(parent_package='',top_path=None):
|
||
|
from numpy.distutils.misc_util import Configuration
|
||
|
config = Configuration('compat', parent_package, top_path)
|
||
|
return config
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
from numpy.distutils.core import setup
|
||
|
setup(configuration=configuration)
|