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

Created xbob.db.base package, with stripped-out API

parent 9e915fa6
No related branches found
No related tags found
No related merge requests found
Showing
with 21 additions and 24 deletions
......@@ -10,6 +10,8 @@ develop = .
extensions = mr.developer
auto-checkout = *
prefixes = /Users/andre/work/bob/b/dbg
verbose = true
debug = true
[sources]
xbob.buildout = git git@github.com:bioidiap/xbob.buildout
......
......@@ -9,10 +9,10 @@ version = '2.0.0a0'
setup(
name='xbob.db',
name='xbob.db.base',
version=version,
description='Bindings for bob.db',
url='http://github.com/anjos/xbob.db',
description='Database Bindings API',
url='http://github.com/anjos/xbob.db.base',
license='BSD',
author='Andre Anjos',
author_email='andre.anjos@idiap.ch',
......@@ -24,23 +24,16 @@ setup(
install_requires=[
'setuptools',
'xbob.io',
'xbob.measure',
'xbob.machine',
'xbob.trainer',
],
namespace_packages=[
"xbob",
"xbob.db",
],
entry_points={
'console_scripts': [
'xbob_dbmanage.py = xbob.db.script.dbmanage:main',
],
'xbob.db': [
'iris = xbob.db.iris.driver:Interface',
'xbob_dbmanage.py = xbob.db.base.script.dbmanage:main',
],
},
......
#!/usr/bin/env python
# Andre Anjos <andre.anjos@idiap.ch>
# Thu 23 Jun 20:22:28 2011 CEST
# vim: set fileencoding=utf-8 :
"""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
#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
__import__('pkg_resources').declare_namespace(__name__)
#!/usr/bin/env python
# Andre Anjos <andre.anjos@idiap.ch>
# Thu 23 Jun 20:22:28 2011 CEST
# vim: set fileencoding=utf-8 :
"""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
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
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