Skip to content
Snippets Groups Projects
setup.py 1.61 KiB
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
# Andre Anjos <andre.anjos@idiap.ch>
# Mon 16 Apr 08:18:08 2012 CEST


from setuptools import setup, find_packages, dist

from bob.extension.utils import load_requirements

install_requires = load_requirements()

# Define package version
version = open("version.txt").read().rstrip()


setup(
    name="bob.learn.linear",
    version=version,
    description="Linear Machine and Trainers for Bob",
    url="http://gitlab.idiap.ch/bob/bob.learn.linear",
    license="BSD",
    author="Andre Anjos",
    author_email="andre.anjos@idiap.ch",
    long_description=open("README.rst").read(),
    include_package_data=True,
    zip_safe=False,
    setup_requires=install_requires,
    # This line is required for any distutils based packaging.
    packages=find_packages(),
    # This line defines which packages should be installed when you "install"
    # this package. All packages that are mentioned here, but are not installed
    # on the current system will be installed locally and only visible to the
    # scripts of this package. Don't worry - You won't need administrative
    # privileges when using buildout.
    install_requires=install_requires,
    entry_points={"console_scripts": [],},
    classifiers=[
        "Framework :: Bob",
        "Development Status :: 4 - Beta",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Natural Language :: English",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Topic :: Software Development :: Libraries :: Python Modules",
    ],
)