-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
64 lines (57 loc) · 2.25 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
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
# coding: utf8
#
# Project: Image Alignment
#
# Copyright (C) European Synchrotron Radiation Facility, Grenoble, France
#
# Principal author: Jérôme Kieffer ([email protected])
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
__author__ = "Jérôme Kieffer"
__copyright__ = "2012, ESRF"
__license__ = "LGPL"
import sys
from distutils.core import setup
import glob
from numpy.distutils.misc_util import get_numpy_include_dirs
cython_src = ["feature"]
if sys.version_info < (2, 6):
src = [i + ".cpp" for i in cython_src]
from distutils.core import Extension
build_ext = None
else:
src = [i + ".pyx" for i in cython_src]
from Cython.Distutils.extension import Extension
from Cython.Distutils import build_ext
feature_ext = Extension(name="feature",
sources=src + glob.glob("surf/*.cpp") + glob.glob("sift/*.cpp") + glob.glob("asift/*.cpp") + glob.glob("orsa/*.cpp") + glob.glob("image/*.cpp") + ["crc32.cpp"],
include_dirs=get_numpy_include_dirs(),
language="c++",
extra_compile_args=['-fopenmp', "-msse4.2"],
extra_link_args=['-fopenmp'],
)
rlock_ext = Extension(name="cythreading",
sources=["cythreading.pyx"],
language="c++",
)
setup(name='feature',
version="0.6.1",
author="Jerome Kieffer",
author_email="[email protected]",
description='test for feature extraction algorithm like sift, surf, ...',
ext_modules=[feature_ext ],
cmdclass={'build_ext': build_ext}
)