Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.measure
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.measure
Commits
9a35cfc3
Commit
9a35cfc3
authored
10 years ago
by
Manuel Günther
Browse files
Options
Downloads
Patches
Plain Diff
Loaded bob.math Library before importing _library.
parent
e88b7a4b
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/measure/__init__.py
+3
-0
3 additions, 0 deletions
bob/measure/__init__.py
buildout.cfg
+0
-2
0 additions, 2 deletions
buildout.cfg
setup.py
+13
-14
13 additions, 14 deletions
setup.py
with
16 additions
and
16 deletions
bob/measure/__init__.py
+
3
−
0
View file @
9a35cfc3
# import Libraries of other lib packages
import
bob.math
from
._library
import
*
from
._library
import
*
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 @
9a35cfc3
...
@@ -18,8 +18,6 @@ develop = src/bob.extension
...
@@ -18,8 +18,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
+
13
−
14
View file @
9a35cfc3
...
@@ -9,10 +9,7 @@ from setuptools import setup, find_packages, dist
...
@@ -9,10 +9,7 @@ from setuptools import setup, find_packages, dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'
bob.blitz
'
]
+
bob_packages
))
dist
.
Distribution
(
dict
(
setup_requires
=
[
'
bob.blitz
'
]
+
bob_packages
))
from
bob.blitz.extension
import
Extension
from
bob.blitz.extension
import
Extension
packages
=
[
packages
=
[
'
blitz >= 0.10
'
,
'
boost
'
]
'
blitz >= 0.10
'
,
'
boost
'
,
# any version will do, only need headers
]
version
=
'
2.0.0a0
'
version
=
'
2.0.0a0
'
...
@@ -35,6 +32,7 @@ setup(
...
@@ -35,6 +32,7 @@ setup(
install_requires
=
[
install_requires
=
[
'
setuptools
'
,
'
setuptools
'
,
'
bob.blitz
'
,
'
bob.blitz
'
,
'
bob.core
'
,
'
bob.math
'
,
'
bob.math
'
,
'
bob.io.base
'
,
'
bob.io.base
'
,
'
matplotlib
'
,
'
matplotlib
'
,
...
@@ -42,27 +40,28 @@ setup(
...
@@ -42,27 +40,28 @@ setup(
namespace_packages
=
[
namespace_packages
=
[
"
bob
"
,
"
bob
"
,
],
],
ext_modules
=
[
ext_modules
=
[
Extension
(
"
bob.measure.version
"
,
Extension
(
"
bob.measure.version
"
,
[
[
"
bob/measure/version.cpp
"
,
"
bob/measure/version.cpp
"
,
],
],
packages
=
packages
,
packages
=
packages
,
version
=
version
,
version
=
version
,
bob_packages
=
bob_packages
,
bob_packages
=
bob_packages
,
),
),
Extension
(
"
bob.measure._library
"
,
Extension
(
"
bob.measure._library
"
,
[
[
"
bob/measure/error.cpp
"
,
"
bob/measure/error.cpp
"
,
"
bob/measure/main.cpp
"
,
"
bob/measure/main.cpp
"
,
],
],
packages
=
packages
,
packages
=
packages
,
version
=
version
,
version
=
version
,
bob_packages
=
bob_packages
,
bob_packages
=
bob_packages
,
),
),
],
],
entry_points
=
{
entry_points
=
{
'
console_scripts
'
:
[
'
console_scripts
'
:
[
...
@@ -70,8 +69,8 @@ setup(
...
@@ -70,8 +69,8 @@ setup(
'
bob_eval_threshold.py = bob.measure.script.eval_threshold:main
'
,
'
bob_eval_threshold.py = bob.measure.script.eval_threshold:main
'
,
'
bob_apply_threshold.py = bob.measure.script.apply_threshold:main
'
,
'
bob_apply_threshold.py = bob.measure.script.apply_threshold:main
'
,
'
bob_plot_cmc.py = bob.measure.script.plot_cmc:main
'
,
'
bob_plot_cmc.py = bob.measure.script.plot_cmc:main
'
,
],
],
},
},
classifiers
=
[
classifiers
=
[
'
Development Status :: 3 - Alpha
'
,
'
Development Status :: 3 - Alpha
'
,
...
@@ -81,6 +80,6 @@ setup(
...
@@ -81,6 +80,6 @@ setup(
'
Programming Language :: Python
'
,
'
Programming Language :: Python
'
,
'
Programming Language :: Python :: 3
'
,
'
Programming Language :: Python :: 3
'
,
'
Topic :: Software Development :: Libraries :: Python Modules
'
,
'
Topic :: Software Development :: Libraries :: Python 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