Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.bio.gmm
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.bio.gmm
Commits
8c23b67a
Commit
8c23b67a
authored
9 years ago
by
Manuel Günther
Browse files
Options
Downloads
Patches
Plain Diff
Improved build system
parent
2b13b46b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
bob/bio/gmm/test/test_algorithms.py
+1
-0
1 addition, 0 deletions
bob/bio/gmm/test/test_algorithms.py
buildout.cfg
+40
-7
40 additions, 7 deletions
buildout.cfg
requirements.txt
+18
-0
18 additions, 0 deletions
requirements.txt
setup.py
+6
-5
6 additions, 5 deletions
setup.py
with
65 additions
and
12 deletions
bob/bio/gmm/test/test_algorithms.py
+
1
−
0
View file @
8c23b67a
...
...
@@ -39,6 +39,7 @@ import bob.io.base
import
bob.learn.linear
import
bob.io.base.test_utils
import
bob.bio.gmm
from
bob.bio.base.test
import
utils
def
_compare
(
data
,
reference
,
write_function
=
bob
.
bio
.
base
.
save
,
read_function
=
bob
.
bio
.
base
.
load
):
...
...
This diff is collapsed.
Click to expand it.
buildout.cfg
+
40
−
7
View file @
8c23b67a
...
...
@@ -4,20 +4,53 @@
[buildout]
parts
=
scripts
eggs
=
bob.learn.linear
bob.bio.base
bob.bio.gmm
extensions
=
bob.buildout
eggs
=
bob.bio.gmm
gridtk
develop
=
../../bob/layers/1/bob.learn.linear
../bob.bio.base
extensions
=
bob.buildout
mr.developer
auto-checkout
=
*
develop
=
src/bob.extension
src/bob.blitz
src/bob.core
src/bob.io.base
src/bob.learn.activation
src/bob.math
src/bob.learn.linear
src/bob.sp
src/bob.learn.em
src/bob.measure
src/bob.db.base
src/bob.db.verification.utils
src/bob.db.verification.filelist
src/bob.db.atnt
src/bob.io.image
src/bob.bio.base
.
; options for bob.buildout
debug
=
true
verbose
=
true
newest
=
false
[sources]
bob.extension
=
git https://github.com/bioidiap/bob.extension
bob.blitz
=
git https://github.com/bioidiap/bob.blitz
bob.core
=
git https://github.com/bioidiap/bob.core
bob.io.base
=
git https://github.com/bioidiap/bob.io.base
bob.learn.activation
=
git https://github.com/bioidiap/bob.learn.activation
bob.math
=
git https://github.com/bioidiap/bob.math
bob.sp
=
git https://github.com/bioidiap/bob.sp
bob.learn.linear
=
git https://github.com/bioidiap/bob.learn.linear
bob.learn.em
=
git https://github.com/bioidiap/bob.learn.em
bob.measure
=
git https://github.com/bioidiap/bob.measure
bob.db.base
=
git https://github.com/bioidiap/bob.db.base
bob.db.verification.utils
=
git https://github.com/bioidiap/bob.db.verification.utils
bob.db.verification.filelist
=
git https://github.com/bioidiap/bob.db.verification.filelist
bob.db.atnt
=
git https://github.com/bioidiap/bob.db.atnt
bob.io.image
=
git https://github.com/bioidiap/bob.io.image
bob.bio.base
=
git https://github.com/bioidiap/bob.bio.base
[scripts]
recipe
=
bob.buildout:scripts
dependent-scripts
=
true
This diff is collapsed.
Click to expand it.
requirements.txt
0 → 100644
+
18
−
0
View file @
8c23b67a
setuptools
bob.extension
bob.blitz
bob.core
bob.io.base
bob.learn.activation
bob.math
bob.learn.linear
bob.sp
bob.learn.em
bob.measure
bob.db.base
bob.db.verification.utils
bob.db.verification.filelist
bob.db.atnt
# for test purposes
bob.io.image
#
for
test
purposes
bob.bio.base
matplotlib
# for plotting
This diff is collapsed.
Click to expand it.
setup.py
+
6
−
5
View file @
8c23b67a
...
...
@@ -33,7 +33,11 @@
# allows you to test your package with new python dependencies w/o requiring
# administrative interventions.
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
,
dist
dist
.
Distribution
(
dict
(
setup_requires
=
[
'
bob.extension
'
]))
from
bob.extension.utils
import
load_requirements
install_requires
=
load_requirements
()
# The only thing we do in this file is to call the setup() function with all
# parameters that define our package.
...
...
@@ -64,10 +68,7 @@ setup(
# on the current system will be installed locally and only visible to the
# scripts of this package. Don't worry - You won't need administrative
# privileges when using buildout.
install_requires
=
[
'
setuptools
'
,
'
bob.bio.base
'
],
install_requires
=
install_requires
,
# Your project should be called something like 'bob.<foo>' or
# 'bob.<foo>.<bar>'. To implement this correctly and still get all your
...
...
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