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

Remove last legacy bits, package now builds find

parent 10f8d7c2
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,8 @@
; Mon 16 Apr 08:29:18 2012 CEST
[buildout]
parts = scripts
eggs = xbob.db
parts = xbob.blitz xbob.io scripts
eggs = xbob.db.base
ipdb
develop = .
extensions = mr.developer
......@@ -15,6 +15,19 @@ debug = true
[sources]
xbob.buildout = git git@github.com:bioidiap/xbob.buildout
xbob.extension = git git@github.com:bioidiap/xbob.extension branch=xbob
xbob.blitz = git git@github.com:anjos/xbob.blitz egg=false
xbob.io = git git@github.com:anjos/xbob.io egg=false
[xbob.blitz]
recipe = xbob.buildout:develop
setup = src/xbob.blitz
eggs = xbob.extension
[xbob.io]
recipe = xbob.buildout:develop
setup = src/xbob.io
eggs = xbob.blitz
[scripts]
recipe = xbob.buildout:scripts
......@@ -24,6 +24,7 @@ setup(
install_requires=[
'setuptools',
'xbob.io',
],
namespace_packages=[
......
......@@ -6,7 +6,4 @@
"""The db package contains simplified APIs to access data for various databases
that can be used in Biometry, Machine Learning or Pattern Classification."""
from . import utils, driver, iris
__all__ = [k for k in dir() if not k.startswith('_')]
if 'k' in locals(): del k
from . import utils, driver
......@@ -187,4 +187,4 @@ def connection_string(dbtype, dbfile, opts={}):
# import the create_directories_save function from bob.io
# (it was moved there and renamed)
from ..io import create_directories_save as makedirs_safe
from xbob.io import create_directories_save as makedirs_safe
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