Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.io.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
Package registry
Model registry
Operate
Environments
Terraform modules
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.io.base
Commits
bf4ba2e7
Commit
bf4ba2e7
authored
10 years ago
by
Manuel Günther
Browse files
Options
Downloads
Patches
Plain Diff
Loading our own Library.
parent
48724b0b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bob/io/base/__init__.py
+7
-0
7 additions, 0 deletions
bob/io/base/__init__.py
buildout.cfg
+0
-2
0 additions, 2 deletions
buildout.cfg
setup.py
+17
-11
17 additions, 11 deletions
setup.py
with
24 additions
and
13 deletions
bob/io/base/__init__.py
+
7
−
0
View file @
bf4ba2e7
# import Libraries of other lib packages
import
bob.core
# import our own Library
import
bob.extension
bob
.
extension
.
load_bob_library
(
'
bob.io.base
'
,
__file__
)
from
._library
import
File
,
HDF5File
,
extensions
from
._library
import
File
,
HDF5File
,
extensions
from
.
import
version
from
.
import
version
from
.version
import
module
as
__version__
from
.version
import
module
as
__version__
...
...
This diff is collapsed.
Click to expand it.
buildout.cfg
+
0
−
2
View file @
bf4ba2e7
...
@@ -16,8 +16,6 @@ develop = src/bob.extension
...
@@ -16,8 +16,6 @@ develop = src/bob.extension
; options for bob.buildout extension
; options for bob.buildout extension
debug
=
true
debug
=
true
verbose
=
true
verbose
=
true
prefixes
=
/idiap/group/torch5spro/releases/preview/install/linux-x86_64-release
/Users/andre/work/bob/b/dbg/
[sources]
[sources]
bob.extension
=
git https://github.com/bioidiap/bob.extension
bob.extension
=
git https://github.com/bioidiap/bob.extension
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
17
−
11
View file @
bf4ba2e7
...
@@ -3,11 +3,16 @@
...
@@ -3,11 +3,16 @@
# Andre Anjos <andre.anjos@idiap.ch>
# Andre Anjos <andre.anjos@idiap.ch>
# Mon 16 Apr 08:18:08 2012 CEST
# Mon 16 Apr 08:18:08 2012 CEST
bob_packages
=
[
'
bob.core
'
]
from
setuptools
import
setup
,
find_packages
,
dist
from
setuptools
import
setup
,
find_packages
,
dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'
bob.blitz
'
,
'
bob.core
'
]
))
dist
.
Distribution
(
dict
(
setup_requires
=
[
'
bob.blitz
'
]
+
bob_packages
))
from
bob.extension.utils
import
egrep
,
find_header
,
find_library
from
bob.extension.utils
import
egrep
,
find_header
,
find_library
from
bob.blitz.extension
import
Extension
,
Library
,
build_ext
from
bob.blitz.extension
import
Extension
,
Library
,
build_ext
packages
=
[
'
boost
'
]
boost_modules
=
[
'
system
'
,
'
filesystem
'
]
version
=
'
2.0.0a0
'
version
=
'
2.0.0a0
'
def
libhdf5_version
(
header
):
def
libhdf5_version
(
header
):
...
@@ -137,6 +142,7 @@ setup(
...
@@ -137,6 +142,7 @@ setup(
install_requires
=
[
install_requires
=
[
'
setuptools
'
,
'
setuptools
'
,
'
bob.blitz
'
,
'
bob.blitz
'
,
'
bob.core
'
],
],
namespace_packages
=
[
namespace_packages
=
[
...
@@ -152,10 +158,10 @@ setup(
...
@@ -152,10 +158,10 @@ setup(
define_macros
=
define_macros
,
define_macros
=
define_macros
,
system_include_dirs
=
system_include_dirs
,
system_include_dirs
=
system_include_dirs
,
version
=
version
,
version
=
version
,
bob_packages
=
[
'
bob
.core
'
]
,
bob_packages
=
bob
_packages
,
packages
=
[
'
boost
'
]
,
packages
=
packages
,
boost_modules
=
[
'
system
'
,
'
filesystem
'
]
,
boost_modules
=
boost_modules
,
),
),
Library
(
"
bob.io.base.bob_io_base
"
,
Library
(
"
bob.io.base.bob_io_base
"
,
[
[
...
@@ -184,9 +190,9 @@ setup(
...
@@ -184,9 +190,9 @@ setup(
system_include_dirs
=
system_include_dirs
,
system_include_dirs
=
system_include_dirs
,
define_macros
=
define_macros
,
define_macros
=
define_macros
,
version
=
version
,
version
=
version
,
bob_packages
=
[
'
bob
.core
'
,
'
bob.blitz
'
]
,
bob_packages
=
bob
_packages
,
packages
=
[
'
boost
'
]
,
packages
=
packages
,
boost_modules
=
[
'
system
'
,
'
filesystem
'
]
,
boost_modules
=
boost_modules
,
),
),
Extension
(
"
bob.io.base._library
"
,
Extension
(
"
bob.io.base._library
"
,
...
@@ -202,9 +208,9 @@ setup(
...
@@ -202,9 +208,9 @@ setup(
define_macros
=
define_macros
,
define_macros
=
define_macros
,
system_include_dirs
=
system_include_dirs
,
system_include_dirs
=
system_include_dirs
,
version
=
version
,
version
=
version
,
bob_packages
=
[
'
bob
.core
'
]
,
bob_packages
=
bob
_packages
,
packages
=
[
'
boost
'
]
,
packages
=
packages
,
boost_modules
=
[
'
system
'
,
'
filesystem
'
]
,
boost_modules
=
boost_modules
,
),
),
],
],
...
...
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