diff --git a/.travis.yml b/.travis.yml
index 253ec7d6ac7f03f012f37323a1cba7b24cbdf5fe..d7364cb1e5abb243b4be48e67f1bf23a8f6591b6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,7 +23,7 @@ before_install:
 - pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel scipy$SCIPYSPEC matplotlib==1.3.1 sphinx nose==1.3.0 jinja2==2.6 coveralls pygments==1.6
 install:
 - python bootstrap-buildout.py
-- ./bin/buildout
+- ./bin/buildout -c develop.cfg
 script:
 - ./bin/python -c 'from bob.example.faceverify import get_config; print(get_config())'
 - ./bin/coverage run --source=bob.example.faceverify ./bin/nosetests -sv
diff --git a/buildout.cfg b/buildout.cfg
index 330508b22c3673d62e2c8024586b5c39cbf20499..6cac555148084f9f13f17cc29404d529fdf710b7 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -6,52 +6,13 @@
 parts = scripts
 eggs = bob.example.faceverify
 extensions = bob.buildout
-             mr.developer
-auto-checkout = *
-develop = src/bob.extension
-          src/bob.blitz
-          src/bob.core
-          src/bob.io.base
-          src/bob.io.image
-          src/bob.sp
-          src/bob.math
-          src/bob.measure
-          src/bob.learn.activation
-          src/bob.learn.linear
-          src/bob.learn.em
-          src/bob.ip.base
-          src/bob.ip.color
-          src/bob.ip.gabor
-          src/bob.db.base
-          src/bob.db.verification.utils
-          src/bob.db.atnt
-          .
+develop = .
 
 ; options for bob.buildout extension
 debug = false
 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.io.image = git https://github.com/bioidiap/bob.io.image
-bob.sp = git https://github.com/bioidiap/bob.sp
-bob.math = git https://github.com/bioidiap/bob.math
-bob.measure = git https://github.com/bioidiap/bob.measure
-bob.learn.activation = git https://github.com/bioidiap/bob.learn.activation
-bob.learn.linear = git https://github.com/bioidiap/bob.learn.linear
-bob.learn.em = git https://github.com/bioidiap/bob.learn.em
-bob.ip.base = git https://github.com/bioidiap/bob.ip.base
-bob.ip.color = git https://github.com/bioidiap/bob.ip.color
-bob.ip.gabor = git https://github.com/bioidiap/bob.ip.gabor
-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.atnt = git https://github.com/bioidiap/bob.db.atnt
-
-
 [scripts]
 recipe = bob.buildout:scripts
 dependent-scripts = true
diff --git a/develop.cfg b/develop.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..330508b22c3673d62e2c8024586b5c39cbf20499
--- /dev/null
+++ b/develop.cfg
@@ -0,0 +1,57 @@
+; vim: set fileencoding=utf-8 :
+; Andre Anjos <andre.anjos@idiap.ch>
+; Mon 16 Apr 08:29:18 2012 CEST
+
+[buildout]
+parts = scripts
+eggs = bob.example.faceverify
+extensions = bob.buildout
+             mr.developer
+auto-checkout = *
+develop = src/bob.extension
+          src/bob.blitz
+          src/bob.core
+          src/bob.io.base
+          src/bob.io.image
+          src/bob.sp
+          src/bob.math
+          src/bob.measure
+          src/bob.learn.activation
+          src/bob.learn.linear
+          src/bob.learn.em
+          src/bob.ip.base
+          src/bob.ip.color
+          src/bob.ip.gabor
+          src/bob.db.base
+          src/bob.db.verification.utils
+          src/bob.db.atnt
+          .
+
+; options for bob.buildout extension
+debug = false
+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.io.image = git https://github.com/bioidiap/bob.io.image
+bob.sp = git https://github.com/bioidiap/bob.sp
+bob.math = git https://github.com/bioidiap/bob.math
+bob.measure = git https://github.com/bioidiap/bob.measure
+bob.learn.activation = git https://github.com/bioidiap/bob.learn.activation
+bob.learn.linear = git https://github.com/bioidiap/bob.learn.linear
+bob.learn.em = git https://github.com/bioidiap/bob.learn.em
+bob.ip.base = git https://github.com/bioidiap/bob.ip.base
+bob.ip.color = git https://github.com/bioidiap/bob.ip.color
+bob.ip.gabor = git https://github.com/bioidiap/bob.ip.gabor
+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.atnt = git https://github.com/bioidiap/bob.db.atnt
+
+
+[scripts]
+recipe = bob.buildout:scripts
+dependent-scripts = true