Created
January 17, 2012 19:29
-
-
Save fish2000/1628347 to your computer and use it in GitHub Desktop.
Setup script for the Python VLFeat bindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Installation script for the vlfeat module | |
""" | |
import sys, os | |
from distutils.core import Extension, setup | |
from distutils.errors import DistutilsFileError | |
from distutils.command.build_ext import build_ext | |
__version__ = '0.1.1a3' | |
# on unix systems, try: | |
# find / -name multi_index_container.hpp | |
# your BOOST_PATH is the parent directory, usually 'include/' | |
BOOST_PATH = None | |
# $ find / -name *libboost_python-mt* | |
# your LIBBOOST_PATH is the containing directory | |
LIBBOOST_PATH = None | |
# $ find / -name arrayobject.h | |
# your NUMPY_PATH is the parent directory, usually 'include/' | |
NUMPY_PATH = None | |
IncludeDirs = ['vlfeat/'] | |
LinkArgs = ['-msse'] | |
if sys.platform == 'darwin': | |
noPortsError = ''' | |
pyVLFeat currently only supports installation into a MacPorts | |
environment on the Mac OS X operating system. To install elsewhere | |
you will need to edit the path variables at the top of setup.py | |
''' | |
LinkArgs.append('-lboost_python-mt') | |
if BOOST_PATH is None: | |
if os.path.exists('/opt/local/include/'): | |
IncludeDirs.append('/opt/local/include/') | |
else: | |
raise RuntimeError(noPortsError) | |
else: | |
IncludeDirs.append(BOOST_PATH) | |
if LIBBOOST_PATH is None: | |
if os.path.exists('/opt/local/lib/'): | |
IncludeDirs.append('/opt/local/lib/') | |
else: | |
raise RuntimeError(noPortsError) | |
else: | |
IncludeDirs.append(LIBBOOST_PATH) | |
if NUMPY_PATH is None: | |
npPath = os.path.join(sys.prefix, 'lib', | |
'python%d.%d' % (sys.version_info[:2]), | |
'site-packages/numpy/core/include/') | |
if os.path.exists(npPath): | |
IncludeDirs.append(npPath) | |
else: | |
raise RuntimeError(noPortsError) | |
else: | |
IncludeDirs.append(NUMPY_PATH) | |
else: | |
LinkArgs.append('-lboost_python-mt-py26') | |
if BOOST_PATH is not None: | |
IncludeDirs.append(BOOST_PATH) | |
if LIBBOOST_PATH is not None: | |
IncludeDirs.append(LIBBOOST_PATH) | |
if NUMPY_PATH is not None: | |
IncludeDirs.append(NUMPY_PATH) | |
vlfeat_src = ['vlfeat/vl/aib.c', 'vlfeat/vl/generic.c', | |
'vlfeat/vl/hikmeans.c', 'vlfeat/vl/ikmeans.c', | |
'vlfeat/vl/imopv.c', 'vlfeat/vl/mathop.c', | |
'vlfeat/vl/mathop_sse2.c', 'vlfeat/vl/pgm.c', | |
'vlfeat/vl/rodrigues.c', 'vlfeat/vl/stringop.c', | |
'vlfeat/vl/getopt_long.c', 'vlfeat/vl/host.c', | |
'vlfeat/vl/imopv_sse2.c', 'vlfeat/vl/mser.c', | |
'vlfeat/vl/random.c', 'vlfeat/vl/sift.c', | |
'vlfeat/vl/dsift.c', 'vlfeat/vl/quickshift.c', | |
'vlfeat/mser/vl_erfill.cpp', 'vlfeat/mser/vl_mser.cpp', | |
'vlfeat/sift/vl_sift.cpp', 'vlfeat/sift/vl_dsift.cpp', | |
'vlfeat/sift/vl_siftdescriptor.cpp', 'vlfeat/imop/vl_imsmooth.cpp', | |
'vlfeat/misc/vl_binsum.cpp', 'vlfeat/kmeans/vl_hikmeans.cpp', | |
'vlfeat/kmeans/vl_ikmeans.cpp', 'vlfeat/kmeans/vl_hikmeanspush.cpp', | |
'vlfeat/kmeans/vl_ikmeanspush.cpp', 'vlfeat/quickshift/vl_quickshift.cpp', | |
'vlfeat/py_vlfeat.cpp'] | |
vlfeat_dep = ['vlfeat/vl/aib.h', 'vlfeat/vl/generic.h', | |
'vlfeat/vl/hikmeans.h', 'vlfeat/vl/ikmeans.h', | |
'vlfeat/vl/imopv.h', 'vlfeat/vl/mathop.h', | |
'vlfeat/vl/mathop_sse2.h', 'vlfeat/vl/pgm.h', | |
'vlfeat/vl/rodrigues.h', 'vlfeat/vl/stringop.h', | |
'vlfeat/vl/getopt_long.h', 'vlfeat/vl/host.h', | |
'vlfeat/vl/imopv_sse2.h', 'vlfeat/vl/mser.h', | |
'vlfeat/vl/random.h', 'vlfeat/vl/sift.h', | |
'vlfeat/vl/dsift.h', 'vlfeat/vl/quickshift.h', | |
'vlfeat/kmeans/vl_hikmeans.h', 'vlfeat/kmeans/vl_ikmeans.h', | |
'vlfeat/quickshift/vl_quickshift.h', 'vlfeat/py_vlfeat.h' | |
] | |
LibraryDirs = None | |
Libraries = None | |
BuildExtension = build_ext | |
CompileArgs = ['-msse2', '-O2', '-fPIC', '-w'] | |
def mkExtension(name): | |
modname = '_' + name.lower() | |
src = globals()[name.lower() + '_src'] | |
dep = globals()[name.lower() + '_dep'] | |
return Extension(modname, src, libraries=Libraries, depends=dep, | |
include_dirs=IncludeDirs, library_dirs=LibraryDirs, | |
extra_compile_args=CompileArgs, extra_link_args=LinkArgs) | |
setup(name = 'pyvlfeat', version = __version__, | |
requires = ['numpy'], | |
packages = ['vlfeat'], | |
package_dir = { 'vlfeat' : 'vlfeat' }, | |
ext_modules = [mkExtension('vlfeat')], | |
py_modules = ['vlfeat.__init__', 'vlfeat.kmeans.__init__', | |
'vlfeat.kmeans.vl_hikmeanshist', 'vlfeat.kmeans.vl_ikmeanshist', | |
'vlfeat.misc.__init__', 'vlfeat.misc.colorspaces', | |
'vlfeat.mser.__init__', 'vlfeat.mser.vl_ertr', | |
'vlfeat.plotop.__init__', 'vlfeat.plotop.vl_plotframe', | |
'vlfeat.quickshift.__init__', 'vlfeat.test.__init__', | |
'vlfeat.test.vl_test_hikmeans', 'vlfeat.test.vl_test_ikmeans', | |
'vlfeat.test.vl_test_pattern'], | |
cmdclass = { "build_ext" : BuildExtension }, | |
description = 'Python interface to the VLFeat library', | |
author = 'Andrea Vedaldi, Brian Fulkerson, Mikael Rousson', | |
author_email = '[email protected]', | |
maintainer = 'Peter Le Bek', | |
maintainer_email = '[email protected]', | |
url = 'http://launchpad.net/pyvlfeat', | |
license = 'GPL', | |
platforms = ['Unix', 'Linux'], | |
long_description = """ | |
* Scale-Invariant Feature Transform (SIFT) | |
* Dense SIFT (DSIFT) | |
* Integer k-means (IKM) | |
* Hierarchical Integer k-means (HIKM) | |
* Maximally Stable Extremal Regions (MSER) | |
* Quick shift image segmentation | |
* http://vlfeat.org | |
Dependencies: | |
* Boost.Python (libboost-python-dev on Debian systems) | |
* NumPy | |
* Matplotlib | |
""", | |
classifiers=[ | |
'Operating System :: Unix', | |
'Programming Language :: C', | |
'Programming Language :: C++', | |
'Programming Language :: Python', | |
'Development Status :: 1 - Planning', | |
'Topic :: Scientific/Engineering', | |
'Topic :: Scientific/Engineering :: Artificial Intelligence', | |
'Topic :: Scientific/Engineering :: Image Recognition', | |
'Intended Audience :: Science/Research', | |
'Intended Audience :: Developers', | |
'License :: OSI Approved' | |
], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment