forked from scikit-image/scikit-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (43 loc) · 2.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/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('morphology', parent_package, top_path)
cython(['_skeletonize_cy.pyx',
'_convex_hull.pyx',
'_grayreconstruct.pyx',
'_extrema_cy.pyx'], working_path=base_path)
# _skeletonize_3d uses c++, so it must be cythonized separately
cython(['_skeletonize_3d_cy.pyx.in'], working_path=base_path)
cython(['_extrema_cy.pyx'], working_path=base_path)
cython(['_flood_fill_cy.pyx'], working_path=base_path)
cython(['_max_tree.pyx'], working_path=base_path)
config.add_extension('_skeletonize_cy', sources=['_skeletonize_cy.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_convex_hull', sources=['_convex_hull.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_grayreconstruct', sources=['_grayreconstruct.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_max_tree', sources=['_max_tree.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_skeletonize_3d_cy',
sources=['_skeletonize_3d_cy.cpp'],
include_dirs=[get_numpy_include_dirs()],
language='c++')
config.add_extension('_extrema_cy', sources=['_extrema_cy.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_flood_fill_cy', sources=['_flood_fill_cy.c'],
include_dirs=[get_numpy_include_dirs()])
return config
if __name__ == '__main__':
from numpy.distutils.core import setup
setup(maintainer='scikit-image Developers',
author='Damian Eads',
maintainer_email='scikit-image@python.org',
description='Morphology Wrapper',
url='https://github.com/scikit-image/scikit-image',
license='SciPy License (BSD Style)',
**(configuration(top_path='').todict())
)