Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.db.base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.db.base
Commits
db6e4935
Commit
db6e4935
authored
11 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
Remove last legacy bits, package now builds find
parent
10f8d7c2
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
buildout.cfg
+15
-2
15 additions, 2 deletions
buildout.cfg
setup.py
+1
-0
1 addition, 0 deletions
setup.py
xbob/db/base/__init__.py
+1
-4
1 addition, 4 deletions
xbob/db/base/__init__.py
xbob/db/base/utils.py
+1
-1
1 addition, 1 deletion
xbob/db/base/utils.py
with
18 additions
and
7 deletions
buildout.cfg
+
15
−
2
View file @
db6e4935
...
...
@@ -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
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
0
View file @
db6e4935
...
...
@@ -24,6 +24,7 @@ setup(
install_requires
=
[
'
setuptools
'
,
'
xbob.io
'
,
],
namespace_packages
=
[
...
...
This diff is collapsed.
Click to expand it.
xbob/db/base/__init__.py
+
1
−
4
View file @
db6e4935
...
...
@@ -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
This diff is collapsed.
Click to expand it.
xbob/db/base/utils.py
+
1
−
1
View file @
db6e4935
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment