diff --git a/buildout-bob.cfg b/buildout-bob.cfg index f77e31f1e9af7dec92f5d88132260dc8c512d689..bf49a6a2185cfee722fd610276b7b869caac0ef0 100644 --- a/buildout-bob.cfg +++ b/buildout-bob.cfg @@ -21,67 +21,11 @@ develop = src/bob.buildout src/bob.blitz src/bob.core src/bob.io.base - src/bob.sp - src/bob.ap - src/bob.math - src/bob.measure - src/bob.db.base - src/bob.io.image - src/bob.io.video - src/bob.io.matlab - src/bob.io.audio - src/bob.ip.base - src/bob.ip.color - src/bob.ip.draw - src/bob.ip.gabor - src/bob.learn.activation - src/bob.learn.libsvm - src/bob.learn.linear - src/bob.learn.mlp - src/bob.learn.em - src/bob.learn.boosting - src/bob.ip.facedetect - src/bob.ip.flandmark - src/bob.ip.optflow.hornschunck - src/bob.ip.optflow.liu - src/bob.db.iris - src/bob.db.mnist - src/bob.db.wine - src/bob.db.atnt - src/bob.db.arface eggs = bob.extension bob.blitz bob.core bob.io.base - bob.sp - bob.ap - bob.math - bob.measure - bob.db.base - bob.io.image - bob.io.video - bob.io.matlab - bob.io.audio - bob.ip.base - bob.ip.color - bob.ip.draw - bob.ip.gabor - bob.learn.activation - bob.learn.libsvm - bob.learn.linear - bob.learn.mlp - bob.learn.em - bob.learn.boosting - bob.ip.facedetect - bob.ip.flandmark - bob.ip.optflow.hornschunck - bob.ip.optflow.liu - bob.db.iris - bob.db.mnist - bob.db.wine - bob.db.atnt - bob.db.arface [sources] bob.buildout = git https://gitlab.idiap.ch/bob/bob.buildout @@ -89,34 +33,6 @@ bob.extension = git https://gitlab.idiap.ch/bob/bob.extension bob.blitz = git https://gitlab.idiap.ch/bob/bob.blitz bob.core = git https://gitlab.idiap.ch/bob/bob.core bob.io.base = git https://gitlab.idiap.ch/bob/bob.io.base -bob.sp = git https://gitlab.idiap.ch/bob/bob.sp -bob.ap = git https://gitlab.idiap.ch/bob/bob.ap -bob.math = git https://gitlab.idiap.ch/bob/bob.math -bob.measure = git https://gitlab.idiap.ch/bob/bob.measure -bob.db.base = git https://gitlab.idiap.ch/bob/bob.db.base -bob.io.image = git https://gitlab.idiap.ch/bob/bob.io.image -bob.io.video = git https://gitlab.idiap.ch/bob/bob.io.video -bob.io.matlab = git https://gitlab.idiap.ch/bob/bob.io.matlab -bob.io.audio = git https://gitlab.idiap.ch/bob/bob.io.audio -bob.ip.base = git https://gitlab.idiap.ch/bob/bob.ip.base -bob.ip.color = git https://gitlab.idiap.ch/bob/bob.ip.color -bob.ip.draw = git https://gitlab.idiap.ch/bob/bob.ip.draw -bob.ip.gabor = git https://gitlab.idiap.ch/bob/bob.ip.gabor -bob.learn.activation = git https://gitlab.idiap.ch/bob/bob.learn.activation -bob.learn.libsvm = git https://gitlab.idiap.ch/bob/bob.learn.libsvm -bob.learn.linear = git https://gitlab.idiap.ch/bob/bob.learn.linear -bob.learn.mlp = git https://gitlab.idiap.ch/bob/bob.learn.mlp -bob.learn.em = git https://gitlab.idiap.ch/bob/bob.learn.em -bob.learn.boosting = git https://gitlab.idiap.ch/bob/bob.learn.boosting -bob.ip.facedetect = git https://gitlab.idiap.ch/bob/bob.ip.facedetect -bob.ip.flandmark = git https://gitlab.idiap.ch/bob/bob.ip.flandmark -bob.ip.optflow.hornschunck = git https://gitlab.idiap.ch/bob/bob.ip.optflow.hornschunck -bob.ip.optflow.liu = git https://gitlab.idiap.ch/bob/bob.ip.optflow.liu -bob.db.iris = git https://gitlab.idiap.ch/bob/bob.db.iris -bob.db.mnist = git https://gitlab.idiap.ch/bob/bob.db.mnist -bob.db.wine = git https://gitlab.idiap.ch/bob/bob.db.wine -bob.db.atnt = git https://gitlab.idiap.ch/bob/bob.db.atnt -bob.db.arface = git https://gitlab.idiap.ch/bob/bob.db.arface [scripts] diff --git a/requirements-bob.txt b/requirements-bob.txt index 78ac12c544c2900371c606f206cd910f0f13ba98..4d67b381758d0a079afe620e9d45901c484c4d63 100644 --- a/requirements-bob.txt +++ b/requirements-bob.txt @@ -2,31 +2,3 @@ bob.extension bob.blitz bob.core bob.io.base -bob.sp -bob.ap -bob.math -bob.measure -bob.db.base -bob.io.image -bob.io.video -bob.io.matlab -bob.io.audio -bob.ip.base -bob.ip.color -bob.ip.draw -bob.ip.gabor -bob.learn.activation -bob.learn.libsvm -bob.learn.linear -bob.learn.mlp -bob.learn.em -bob.learn.boosting -bob.ip.facedetect -bob.ip.flandmark -bob.ip.optflow.hornschunck -bob.ip.optflow.liu -bob.db.iris -bob.db.mnist -bob.db.wine -bob.db.atnt -bob.db.arface diff --git a/setup.py b/setup.py index c1f76ee38e50b0bd2270a12bc8271a7862557597..be8b192bb4b38dfc0a1478b354c5fc62a7adad66 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ from setuptools import setup, find_packages requeriments = [l.rstrip("\n") for l in open("requirements-bob.txt", 'r').readlines()] -requeriments = requeriments + [l.rstrip("\n") for l in open("requirements-satellites.txt", 'r').readlines()] +#requeriments = requeriments + [l.rstrip("\n") for l in open("requirements-satellites.txt", 'r').readlines()] # The only thing we do in this file is to call the setup() function with all # parameters that define our package.