#!/usr/bin/env python # vim: set fileencoding=utf-8 : from setuptools import setup, dist dist.Distribution(dict(setup_requires=['bob.extension'])) from bob.extension.utils import load_requirements, find_packages install_requires = load_requirements() setup( name='bob.bio.vein', version=open("version.txt").read().rstrip(), description='Vein Recognition Library', url='https://gitlab.idiap.ch/bob/bob.bio.vein', license='GPLv3', author='Andre Anjos,Pedro Tome', author_email='andre.anjos@idiap.ch,pedro.tome@idiap.ch', keywords = "bob, biometric recognition, evaluation, vein", long_description=open('README.rst').read(), packages=find_packages(), include_package_data=True, zip_safe = False, install_requires=install_requires, entry_points={ 'bob.bio.config': [ # databases 'verafinger = bob.bio.vein.configurations.verafinger', 'utfvp = bob.bio.vein.configurations.utfvp', # baselines 'mc = bob.bio.vein.configurations.maximum_curvature', 'rlt = bob.bio.vein.configurations.repeated_line_tracking', 'wld = bob.bio.vein.configurations.wide_line_detector', # other 'parallel = bob.bio.vein.configurations.parallel', ], }, classifiers = [ 'Framework :: Bob', 'Development Status :: 4 - Beta', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Topic :: Scientific/Engineering :: Artificial Intelligence', 'Topic :: Software Development :: Libraries :: Python Modules', ], )