Newer
Older
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Andre Anjos <andre.anjos@idiap.ch>
from setuptools import setup, find_packages, dist
dist.Distribution(dict(setup_requires=['xbob.blitz', 'xbob.io']))
from xbob.blitz.extension import Extension
import xbob.io
version = '2.0.0a0'
include_dirs = [xbob.io.get_include()]
name="xbob.ip.flandmark",
version=version,
description="Python bindings to the flandmark keypoint localization library",
license="GPLv3",
author='Andre Anjos',
author_email='andre.anjos@idiap.ch',
long_description=open('README.rst').read(),
url='https://github.com/bioidiap/xbob.ip.flandmark',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'xbob.blitz',
'xbob.io', #for tests
'xbob.ip.color', #for tests
'xbob.ip.draw', #for doc generation
'matplotlib', #for doc generation
],
namespace_packages=[
"xbob",
"xbob.ip",
Extension("xbob.ip.flandmark.version",
"xbob/ip/flandmark/version.cpp",
],
version = version,
packages = packages,
),
Extension("xbob.ip.flandmark._library",
[
"xbob/ip/flandmark/flandmark_detector.cpp",
"xbob/ip/flandmark/liblbp.cpp",
"xbob/ip/flandmark/flandmark.cpp",
"xbob/ip/flandmark/main.cpp",
],
version = version,
packages = packages,
boost_modules = ['system'],
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],