"README.md" did not exist on "74771fea464b64eaf39b0e847ff2ff1c9d2c983a"
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.extension'))
from xbob.extension import Extension, build_ext
name="xbob.flandmark",
version="1.1.0",
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(),
packages=find_packages(),
include_package_data=True,
zip_safe=False,
namespace_packages=[
"xbob",
],
setup_requires=[
'xbob.extension',
],
install_requires=[
'setuptools',
'bob',
],
entry_points = {
'console_scripts': [
'annotate.py = xbob.flandmark.script.annotate:main',
cmdclass={
'build_ext': build_ext,
},
"xbob/flandmark/ext/flandmark_detector.cpp",
"xbob/flandmark/ext/liblbp.cpp",
"xbob/flandmark/ext/ext.cpp",
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],