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.measure
Commits
9a35cfc3
Commit
9a35cfc3
authored
Aug 20, 2014
by
Manuel Günther
Browse files
Loaded bob.math Library before importing _library.
parent
e88b7a4b
Changes
3
Hide whitespace changes
Inline
Side-by-side
bob/measure/__init__.py
View file @
9a35cfc3
# import Libraries of other lib packages
import
bob.math
from
._library
import
*
from
.
import
version
from
.version
import
module
as
__version__
...
...
buildout.cfg
View file @
9a35cfc3
...
...
@@ -18,8 +18,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 @
9a35cfc3
...
...
@@ -9,10 +9,7 @@ from setuptools import setup, find_packages, dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'bob.blitz'
]
+
bob_packages
))
from
bob.blitz.extension
import
Extension
packages
=
[
'blitz >= 0.10'
,
'boost'
,
# any version will do, only need headers
]
packages
=
[
'blitz >= 0.10'
,
'boost'
]
version
=
'2.0.0a0'
...
...
@@ -35,6 +32,7 @@ setup(
install_requires
=
[
'setuptools'
,
'bob.blitz'
,
'bob.core'
,
'bob.math'
,
'bob.io.base'
,
'matplotlib'
,
...
...
@@ -42,27 +40,28 @@ setup(
namespace_packages
=
[
"bob"
,
],
],
ext_modules
=
[
Extension
(
"bob.measure.version"
,
[
"bob/measure/version.cpp"
,
],
],
packages
=
packages
,
version
=
version
,
bob_packages
=
bob_packages
,
),
),
Extension
(
"bob.measure._library"
,
[
"bob/measure/error.cpp"
,
"bob/measure/main.cpp"
,
],
],
packages
=
packages
,
version
=
version
,
bob_packages
=
bob_packages
,
),
],
),
],
entry_points
=
{
'console_scripts'
:
[
...
...
@@ -70,8 +69,8 @@ setup(
'bob_eval_threshold.py = bob.measure.script.eval_threshold:main'
,
'bob_apply_threshold.py = bob.measure.script.apply_threshold:main'
,
'bob_plot_cmc.py = bob.measure.script.plot_cmc:main'
,
],
},
],
},
classifiers
=
[
'Development Status :: 3 - Alpha'
,
...
...
@@ -81,6 +80,6 @@ setup(
'Programming Language :: Python'
,
'Programming Language :: Python :: 3'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
],
],
)
)
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