From: peusterm Date: Mon, 7 Mar 2016 14:29:20 +0000 (+0100) Subject: Bugfix: Missing ryu dependecies. Closes #33. X-Git-Tag: v3.1~169^2 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=commitdiff_plain;h=a1a5ed0f026ead6360e3a0ce5599804d009f1f8b Bugfix: Missing ryu dependecies. Closes #33. --- diff --git a/ansible/install.yml b/ansible/install.yml index 23df943..9580f05 100755 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -30,6 +30,9 @@ - name: install networkx pip: name=networkx + - name: install six + pip: name=six + - name: install ryu pip: name=ryu diff --git a/setup.py b/setup.py index dcda018..a3252bf 100644 --- a/setup.py +++ b/setup.py @@ -11,6 +11,15 @@ setup(name='emuvim', packages=find_packages('src'), install_requires=[ 'pyaml', + 'six', + 'zerorpc', + 'tabulate', + 'argparse', + 'networkx', + 'six', + 'ryu', + 'oslo.config', + 'pytest' ], zip_safe=False, entry_points={