From 795f04fa74cedcc2f4aeb49f693d66e4345b556f Mon Sep 17 00:00:00 2001 From: peusterm Date: Thu, 24 Mar 2016 10:32:18 +0100 Subject: [PATCH] Completed dependency list in setup.py, README, ansible playbook --- README.md | 3 +++ ansible/install.yml | 6 ++++++ setup.py | 3 ++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c306d4..32a4652 100755 --- a/README.md +++ b/README.md @@ -24,6 +24,9 @@ The following lead developers are responsible for this repository and have admin * 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 @@ setup(name='emuvim', 'pytest', 'Flask', 'flask_restful', - 'docker-py' + 'docker-py', + 'requests' ], zip_safe=False, entry_points={ -- 2.17.1