Completed dependency list in setup.py, README, ansible playbook
diff --git a/README.md b/README.md
index 8c306d4..32a4652 100755
--- a/README.md
+++ b/README.md
@@ -24,6 +24,9 @@
 * pytest-runner
 * Flask
 * flask_restful
+* requests 
+* docker-py
+
 
 ### Project structure
 
diff --git a/ansible/install.yml b/ansible/install.yml
index cd43336..19c1ef2 100755
--- a/ansible/install.yml
+++ b/ansible/install.yml
@@ -47,3 +47,9 @@
 
    - name: install flask_restful
      pip: name=flask_restful state=latest
+
+   - name: install requests
+     pip: name=requests state=latest
+
+   - name: install docker-py
+     pip: name=docker-py state=latest
diff --git a/setup.py b/setup.py
index 0634761..5bcad50 100644
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,8 @@
           'pytest',
           'Flask',
           'flask_restful',
-          'docker-py'
+          'docker-py',
+          'requests'
       ],
       zip_safe=False,
       entry_points={