Skip to content
Snippets Groups Projects
Commit afe38fdc authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Re-normalize buildout

parent 8ba24258
No related branches found
No related tags found
No related merge requests found
...@@ -3,32 +3,41 @@ ...@@ -3,32 +3,41 @@
; Mon 16 Apr 08:29:18 2012 CEST ; Mon 16 Apr 08:29:18 2012 CEST
[buildout] [buildout]
parts = external python tests sphinx parts = external tests sphinx python
develop = . develop = .
eggs = bob.db.replay
versions = versions
index = http://d.pypi.python.org/simple index = http://d.pypi.python.org/simple
versions = versions
;You are not obliged to set the version of Bob to use. However, note that
;buildout in this case will choose the default version installed looking at the
;current sys.path settings. Also note that your current 'eggs' directory may
;not take precedence over that.
eggs = bob==master
bob.db.replay
[versions] [versions]
;idiap.recipe.externaleggs = 0.1 ;If you would like to pin-down the recipes package version so you are not
;idiap.recipe.sphinx = 0.1 ;bothered with eventual updates, do it here. Note that, by pinning the version
;of the package, you will be also excluded from bug fixes.
;bob.buildout.recipes = 0.1
[external] [external]
recipe = idiap.recipe.externaleggs:recipe recipe = bob.buildout.recipes:external
egg-directories = /Users/andre/work/bob-master/build/lib egg-directories = /Users/andre/work/bob-master/build/lib
[python]
recipe = z3c.recipe.scripts
interpreter = python
eggs = ${buildout:eggs}
[tests] [tests]
recipe = pbp.recipe.noserunner recipe = bob.buildout.recipes:nose
eggs = ${buildout:eggs} eggs = ${buildout:eggs}
script = tests.py script = tests.py
[sphinx] [sphinx]
recipe = idiap.recipe.sphinx:recipe recipe = bob.buildout.recipes:sphinx
eggs = ${buildout:eggs} eggs = ${buildout:eggs}
source = ${buildout:directory}/docs source = ${buildout:directory}/docs
build = ${buildout:directory}/sphinx build = ${buildout:directory}/sphinx
[python]
recipe = z3c.recipe.scripts
interpreter = python
eggs = ${buildout:eggs}
dependent-scripts = true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment