"README.md" did not exist on "a6b105f6f4363cc8f53932a9cf7d2da98b3da44b"
Newer
Older
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()
name='bob.bio.vein',
version=open("version.txt").read().rstrip(),
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,
'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',
],