Skip to content
Snippets Groups Projects
Commit 115d420f authored by Pedro TOME's avatar Pedro TOME
Browse files

fixed travis error

parent d78376c5
No related branches found
No related tags found
No related merge requests found
...@@ -10,3 +10,24 @@ import script ...@@ -10,3 +10,24 @@ import script
#import utils #import utils
def get_config():
"""Returns a string containing the configuration information.
"""
import pkg_resources
packages = pkg_resources.require(__name__)
this = packages[0]
deps = packages[1:]
retval = "%s: %s (%s)\n" % (this.key, this.version, this.location)
retval += " - python dependencies:\n"
for d in deps: retval += " - %s: %s (%s)\n" % (d.key, d.version, d.location)
return retval.strip()
# gets sphinx autodoc done right - don't remove it
__all__ = [_ for _ in dir() if not _.startswith('_')]
...@@ -28,9 +28,18 @@ verbose = true ...@@ -28,9 +28,18 @@ verbose = true
newest = false newest = false
[sources] [sources]
bob.db.vera = git https://github.com/bioidiap/bob.db.vera.git
facereclib = git https://github.com/idiap/facereclib.git facereclib = git https://github.com/idiap/facereclib.git
bob.db.vera = git https://github.com/bioidiap/bob.db.vera.git
bob.db.utfvp = git https://github.com/bioidiap/bob.db.utfvp.git bob.db.utfvp = git https://github.com/bioidiap/bob.db.utfvp.git
bob.blitz = git https://github.com/bioidiap/bob.blitz
bob.core = git https://github.com/bioidiap/bob.core
bob.io.base = git https://github.com/bioidiap/bob.io.base
bob.io.image = git https://github.com/bioidiap/bob.io.image
bob.ip.base = git https://github.com/bioidiap/bob.ip.base
bob.sp = git https://github.com/bioidiap/bob.sp
bob.io.matlab = git https://github.com/bioidiap/bob.io.matlab
[scripts] [scripts]
recipe = bob.buildout:scripts recipe = bob.buildout:scripts
......
...@@ -69,13 +69,12 @@ setup( ...@@ -69,13 +69,12 @@ setup(
install_requires=[ install_requires=[
'setuptools', 'setuptools',
'bob.io.base', 'bob.io.base',
'bob.io.image',
'bob.core', 'bob.core',
'bob.ip.base', 'bob.ip.base',
'bob.sp', 'bob.sp',
'bob.io.matlab', 'bob.io.matlab',
'facereclib', 'facereclib',
'bob.db.vera',
'bob.db.utfvp',
], ],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment