#!/usr/bin/env python # vim: set fileencoding=utf-8 : # Laurent El Shafey # # Copyright (C) 2011-2013 Idiap Research Institute, Martigny, Switzerland # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from setuptools import setup, find_packages, dist dist.Distribution(dict(setup_requires=['bob.extension'])) from bob.extension.utils import load_requirements install_requires = load_requirements() # Define package version version = open("version.txt").read().rstrip() # The only thing we do in this file is to call the setup() function with all # parameters that define our package. setup( name='bob.db.biosecure', version=version, description='Biosecure Database Access API for Bob', url='https://pypi.python.org/pypi/bob.db.biosecure', license='GPLv3', author='Laurent El Shafey', author_email='laurent.el-shafey@idiap.ch', keywords='face recognition, bob, bob.db, Biosecure', long_description=open('README.rst').read(), # This line is required for any distutils based packaging. packages=find_packages(), include_package_data=True, zip_safe=False, install_requires = install_requires, entry_points = { # bob database declaration 'bob.db': [ 'biosecure = bob.db.biosecure.driver:Interface', ], }, classifiers = [ 'Framework :: Bob', 'Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: Education', '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 :: Database :: Front-Ends', ], )