mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 03:04:42 +08:00
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
from skimage._build import cython
|
|
|
|
base_path = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
def configuration(parent_package='', top_path=None):
|
|
from numpy.distutils.misc_util import Configuration, get_numpy_include_dirs
|
|
|
|
config = Configuration('transform', parent_package, top_path)
|
|
config.add_data_dir('tests')
|
|
|
|
cython(['_hough_transform.pyx'], working_path=base_path)
|
|
cython(['_project.pyx'], working_path=base_path)
|
|
|
|
config.add_extension('_hough_transform', sources=['_hough_transform.c'],
|
|
include_dirs=[get_numpy_include_dirs()])
|
|
|
|
config.add_extension('_project', sources=['_project.c'],
|
|
include_dirs=[get_numpy_include_dirs()])
|
|
|
|
return config
|
|
|
|
if __name__ == '__main__':
|
|
from numpy.distutils.core import setup
|
|
setup(maintainer='Scikits-image Developers',
|
|
author='Scikits-image Developers',
|
|
maintainer_email='scikits-image@googlegroups.com',
|
|
description='Transforms',
|
|
url='https://github.com/scikits-image/scikits-image',
|
|
license='SciPy License (BSD Style)',
|
|
**(configuration(top_path='').todict())
|
|
)
|