Skip to content
Snippets Groups Projects
Commit 98431b55 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[setup] Cleanup

parent 8dee3397
No related branches found
No related tags found
1 merge request!10Do not build a library to avoid C++ API incompatibilities (see #2)
Pipeline #25649 passed
#!/usr/bin/env python #!/usr/bin/env python
# vim: set fileencoding=utf-8 : # vim: set fileencoding=utf-8 :
# Manuel Guenther <manuel.guenther@idiap.ch>
#Thu Feb 13 19:18:24 CET 2014
#
# This file contains the python (distutils/setuptools) instructions so your
# package can be installed on **any** host system. It defines some basic
# information like the package name for instance, or its homepage.
#
# It also defines which other packages this python package depends on and that
# are required for this package's operation. The python subsystem will make
# sure all dependent packages are installed or will install them for you upon
# the installation of this package.
#
# The 'buildout' system we use here will go further and wrap this package in
# such a way to create an isolated python working environment. Buildout will
# make sure that dependencies which are not yet installed do get installed, but
# **without** requiring adminstrative privileges on the host system. This
# allows you to test your package with new python dependencies w/o requiring
# administrative interventions.
bob_packages = ['bob.core', 'bob.io.base'] bob_packages = ['bob.core', 'bob.io.base']
...@@ -28,7 +10,6 @@ from bob.blitz.extension import Extension, build_ext ...@@ -28,7 +10,6 @@ from bob.blitz.extension import Extension, build_ext
from bob.extension.utils import load_requirements from bob.extension.utils import load_requirements
build_requires = load_requirements() build_requires = load_requirements()
# Define package version
version = open("version.txt").read().rstrip() version = open("version.txt").read().rstrip()
# Local include directory # Local include directory
...@@ -39,41 +20,24 @@ include_dir = os.path.join(package_dir, 'bob', 'learn', 'boosting', 'include') ...@@ -39,41 +20,24 @@ include_dir = os.path.join(package_dir, 'bob', 'learn', 'boosting', 'include')
packages = ['boost'] packages = ['boost']
boost_modules = ['system'] boost_modules = ['system']
# The only thing we do in this file is to call the setup() function with all
# parameters that define our package.
setup( setup(
# This is the basic information about your project. Modify all this
# information before releasing code publicly.
name='bob.learn.boosting', name='bob.learn.boosting',
version=version, version=version,
description='Boosting framework for Bob', description='Boosting framework for Bob',
url='https://gitlab.idiap.ch/bob/bob.learn.boosting', url='https://gitlab.idiap.ch/bob/bob.learn.boosting',
license='BSD', license='BSD',
author='Manuel Guenther (with help of Rakesh Mehta)', author='Manuel Guenther (with help of Rakesh Mehta)',
author_email='manuel.guenther@idiap.ch', author_email='manuel.guenther@idiap.ch',
# If you have a better, long description of your package, place it on the
# 'doc' directory and then hook it here
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
# This line is required for any distutils based packaging.
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
# 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 adminstrative
# privileges when using buildout.
setup_requires = build_requires, setup_requires = build_requires,
install_requires = build_requires, install_requires = build_requires,
# Declare that the package is in the namespace bob.learn
ext_modules = [ ext_modules = [
Extension("bob.learn.boosting.version", Extension("bob.learn.boosting.version",
[ [
...@@ -92,20 +56,18 @@ setup( ...@@ -92,20 +56,18 @@ setup(
"bob/learn/boosting/main.cpp", "bob/learn/boosting/main.cpp",
"bob/learn/boosting/loss_function.cpp", "bob/learn/boosting/loss_function.cpp",
"bob/learn/boosting/jesorsky_loss.cpp", "bob/learn/boosting/jesorsky_loss.cpp",
"bob/learn/boosting/weak_machine.cpp", "bob/learn/boosting/weak_machine.cpp",
"bob/learn/boosting/stump_machine.cpp", "bob/learn/boosting/stump_machine.cpp",
"bob/learn/boosting/lut_machine.cpp", "bob/learn/boosting/lut_machine.cpp",
"bob/learn/boosting/boosted_machine.cpp", "bob/learn/boosting/boosted_machine.cpp",
"bob/learn/boosting/lut_trainer.cpp", "bob/learn/boosting/lut_trainer.cpp",
# old Library components
"bob/learn/boosting/cpp/LossFunction.cpp", "bob/learn/boosting/cpp/LossFunction.cpp",
"bob/learn/boosting/cpp/JesorskyLoss.cpp", "bob/learn/boosting/cpp/JesorskyLoss.cpp",
"bob/learn/boosting/cpp/StumpMachine.cpp", "bob/learn/boosting/cpp/StumpMachine.cpp",
"bob/learn/boosting/cpp/LUTMachine.cpp", "bob/learn/boosting/cpp/LUTMachine.cpp",
"bob/learn/boosting/cpp/BoostedMachine.cpp", "bob/learn/boosting/cpp/BoostedMachine.cpp",
"bob/learn/boosting/cpp/LUTTrainer.cpp", "bob/learn/boosting/cpp/LUTTrainer.cpp",
], ],
bob_packages = bob_packages, bob_packages = bob_packages,
...@@ -120,21 +82,16 @@ setup( ...@@ -120,21 +82,16 @@ setup(
'build_ext': build_ext 'build_ext': build_ext
}, },
# Define the entry points for this package
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'boosting_example.py = bob.learn.boosting.examples.mnist:main', 'boosting_example.py = bob.learn.boosting.examples.mnist:main',
], ],
}, },
# Classifiers are important if you plan to distribute this package through # https://pypi.org/classifiers/
# PyPI. You can find the complete list of classifiers that are valid and
# useful here (http://pypi.python.org/pypi?%3Aaction=list_classifiers).
classifiers = [ classifiers = [
'Framework :: Bob', 'Framework :: Bob',
'Development Status :: 4 - Beta', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
'Natural Language :: English', 'Natural Language :: English',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment