Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.io.image
Commits
ce850d33
Commit
ce850d33
authored
Aug 20, 2014
by
Manuel Günther
Browse files
Loaded bob.io.base Library before importing _library.
parent
00381014
Changes
3
Hide whitespace changes
Inline
Side-by-side
bob/io/image/__init__.py
View file @
ce850d33
# import Libraries of other lib packages
import
bob.io.base
from
.
import
_library
from
.
import
version
from
.version
import
module
as
__version__
...
...
buildout.cfg
View file @
ce850d33
...
...
@@ -17,8 +17,6 @@ develop = src/bob.extension
; options for bob.buildout extension
debug = true
verbose = true
prefixes = /idiap/group/torch5spro/releases/preview/install/linux-x86_64-release
/Users/andre/work/bob/b/dbg/
[sources]
bob.extension = git https://github.com/bioidiap/bob.extension
...
...
setup.py
View file @
ce850d33
...
...
@@ -12,6 +12,8 @@ from bob.extension.utils import egrep, find_header, find_library
from
bob.blitz.extension
import
Extension
packages
=
[
'boost'
,
'libpng'
]
boost_modules
=
[
'system'
]
version
=
'2.0.0a0'
def
libjpeg_version
(
header
):
...
...
@@ -430,13 +432,13 @@ setup(
namespace_packages
=
[
"bob"
,
"bob.io"
,
],
],
ext_modules
=
[
Extension
(
"bob.io.image.version"
,
[
"bob/io/image/version.cpp"
,
],
],
packages
=
packages
,
boost_modules
=
[
'system'
],
bob_packages
=
bob_packages
,
...
...
@@ -445,7 +447,8 @@ setup(
library_dirs
=
library_dirs
,
libraries
=
libraries
,
define_macros
=
define_macros
,
),
),
Extension
(
"bob.io.image._library"
,
[
"bob/io/image/tiff.cpp"
,
...
...
@@ -455,7 +458,7 @@ setup(
"bob/io/image/bmp.cpp"
,
"bob/io/image/netpbm.cpp"
,
"bob/io/image/main.cpp"
,
],
],
packages
=
packages
,
boost_modules
=
[
'filesystem'
],
bob_packages
=
bob_packages
,
...
...
@@ -464,8 +467,8 @@ setup(
library_dirs
=
library_dirs
,
libraries
=
libraries
,
define_macros
=
define_macros
,
),
],
),
],
classifiers
=
[
'Development Status :: 3 - Alpha'
,
...
...
@@ -476,6 +479,6 @@ setup(
'Programming Language :: Python :: 3'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
'Environment :: Plugins'
,
],
],
)
)
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment