diff --git a/bob/bio/face/database/__init__.py b/bob/bio/face/database/__init__.py
index 6d839b5f8019cadb40ee2e8907ae1fa20ebcdd98..d22587d361343d67222b29e96393965e8f7dc916 100644
--- a/bob/bio/face/database/__init__.py
+++ b/bob/bio/face/database/__init__.py
@@ -19,7 +19,6 @@ from .frgc import FRGCBioDatabase
 from .scface import SCFaceBioDatabase
 from .replaymobile import ReplayMobileBioDatabase
 from .msu_mfsd_mod import MsuMfsdModBioDatabase
-
 from .fargo import FargoBioDatabase
 
 
@@ -59,5 +58,6 @@ __appropriate__(
   SCFaceBioDatabase,
   ReplayMobileBioDatabase,
   MsuMfsdModBioDatabase,
+  FargoBioDatabase
 )
 __all__ = [_ for _ in dir() if not _.startswith('_')]
diff --git a/conda/meta.yaml b/conda/meta.yaml
index 6c76ca5fb1832848f2b02b735f32019062edf669..ae19d8825daf5662427122911ae6430190fa6f40 100644
--- a/conda/meta.yaml
+++ b/conda/meta.yaml
@@ -83,6 +83,7 @@ test:
     - bob.db.replaymobile
     - bob.db.scface
     - bob.db.xm2vts
+    - bob.db.fargo
     - bob.bio.gmm
     - gridtk
 
diff --git a/develop.cfg b/develop.cfg
index e33d2eb2962ec9bf8a900c9e81ab92359c204641..a04aed618c1d1a160811539408e927013f04b8a0 100644
--- a/develop.cfg
+++ b/develop.cfg
@@ -37,6 +37,7 @@ eggs = bob.extension
        bob.db.replaymobile
        bob.db.scface
        bob.db.xm2vts
+       bob.db.fargo
        gridtk
        bob.bio.base
        bob.bio.gmm
@@ -78,6 +79,7 @@ develop = src/bob.extension
           src/bob.db.replaymobile
           src/bob.db.scface
           src/bob.db.xm2vts
+          src/bob.db.fargo
           src/gridtk
           src/bob.bio.base
           src/bob.bio.gmm
@@ -123,6 +125,7 @@ bob.db.replay = git https://gitlab.idiap.ch/bob/bob.db.replay
 bob.db.replaymobile = git https://gitlab.idiap.ch/bob/bob.db.replaymobile
 bob.db.scface = git https://gitlab.idiap.ch/bob/bob.db.scface
 bob.db.xm2vts = git https://gitlab.idiap.ch/bob/bob.db.xm2vts
+bob.db.fargo = git https://gitlab.idiap.ch/bob/bob.db.fargo
 gridtk = git https://gitlab.idiap.ch/bob/gridtk
 bob.bio.base = git https://gitlab.idiap.ch/bob/bob.bio.base
 bob.bio.gmm = git https://gitlab.idiap.ch/bob/bob.bio.gmm
diff --git a/doc/implementation.rst b/doc/implementation.rst
index e765d1780afdb63d9c7fa394e27f8a4a9688a3a4..3fb037e06eb296b6970f34b2d30e2237f08e5d34 100644
--- a/doc/implementation.rst
+++ b/doc/implementation.rst
@@ -171,6 +171,10 @@ Here is the list of files and replacement strings for all databases that are reg
 
   - Images: ``[YOUR_XM2VTS_DIRECTORY]``
 
+* FARGO: ``'fargo'``
+
+  - Images: ``[YOUR_FARGO_DIRECTORY]``
+
 You can use the ``databases.py`` script to list, which data directories are correctly set up.
 
 In order to view the annotations inside your database on top of the images, you can use the ``display_face_annotations.py`` script that is provided.
diff --git a/doc/implemented.rst b/doc/implemented.rst
index 442fe76fa651341338da2af12fd6984dca4ba304..ca0f13c67888c03c2ddec9a9ff9a0e1d02fbfe59 100644
--- a/doc/implemented.rst
+++ b/doc/implemented.rst
@@ -26,6 +26,7 @@ Databases
    bob.bio.face.database.XM2VTSBioDatabase
    bob.bio.face.database.FRGCBioDatabase
    bob.bio.face.database.SCFaceBioDatabase
+   bob.bio.face.database.FargoBioDatabase
 
 
 Face Image Annotators
diff --git a/test-requirements.txt b/test-requirements.txt
index 51d044c0f6cdb7fbd37ee1e38a277e24df6407cd..8ce5e5dea2a4e6d154be15d843147572064f2558 100644
--- a/test-requirements.txt
+++ b/test-requirements.txt
@@ -15,4 +15,5 @@ bob.db.replay
 bob.db.replaymobile
 bob.db.scface
 bob.db.xm2vts
+bob.db.fargo
 bob.bio.gmm