From: peusterm Date: Thu, 24 Mar 2016 09:32:18 +0000 (+0100) Subject: Completed dependency list in setup.py, README, ansible playbook X-Git-Tag: v3.1~157^2 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=commitdiff_plain;h=795f04fa74cedcc2f4aeb49f693d66e4345b556f 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 @@ 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={