diff --git a/.travis.yml b/.travis.yml
index 0c72656097421207eda7102f033c1cb2626f499a..cb248077b5775de491dd35eb92e5bcc9b6a8216d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,11 +20,10 @@ before_install:
 - sudo apt-get install -qq --force-yes libjpeg8-dev libnetpbm10-dev libpng12-dev libtiff4-dev libgif-dev
 - sudo apt-get install -qq --force-yes python-opencv libcv-dev libcvaux-dev libopencv-dev
 - if [ -n "${NUMPYSPEC}" ]; then sudo apt-get install -qq --force-yes libatlas-dev libatlas-base-dev liblapack-dev gfortran; fi
-- if [ -n "${NUMPYSPEC}" ]; then pip install --upgrade pip setuptools; fi
 - if [ -n "${NUMPYSPEC}" ]; then pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel numpy$NUMPYSPEC; fi
-- pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel matplotlib==1.3.0 sphinx nose==1.3.0 jinja2==2.6 cpp-coveralls pygments==1.6 setuptools==8.0
+- pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel matplotlib==1.3.0 sphinx nose==1.3.0 jinja2==2.6 cpp-coveralls pygments==1.6
 install:
-- python bootstrap.py
+- python bootstrap-buildout.py
 - CFLAGS=-coverage ./bin/buildout
 script:
 - ./bin/python -c 'from bob.ip.flandmark import get_config; print(get_config())'
diff --git a/MANIFEST.in b/MANIFEST.in
index ebd5e979a0a40906d662fc0faebb685683e1f054..a369e1efe190a803a329b0c13544ea25b3e8c8a7 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,3 @@
-include LICENSE README.rst bootstrap.py buildout.cfg requirements.txt version.txt
+include LICENSE README.rst bootstrap-buildout.py buildout.cfg requirements.txt version.txt
 recursive-include doc *.rst *.py
 recursive-include bob *.cpp *.h *.dat *.xml *.jpg
diff --git a/bob/ip/flandmark/__init__.py b/bob/ip/flandmark/__init__.py
index 0b6f6055ded36d96a95cf3b15d80498222a0abe8..c632bd4bca6402bd4b317b4e95318a2cb1d4b2ec 100644
--- a/bob/ip/flandmark/__init__.py
+++ b/bob/ip/flandmark/__init__.py
@@ -1,3 +1,6 @@
+# import Libraries of other lib packages
+import bob.io.base
+
 from ._library import *
 from . import version
 from .version import module as __version__
diff --git a/bootstrap.py b/bootstrap-buildout.py
similarity index 100%
rename from bootstrap.py
rename to bootstrap-buildout.py