Bugfix: Missing ryu dependecies. Closes #33.
[osm/vim-emu.git] / ansible / install.yml
old mode 100644 (file)
new mode 100755 (executable)
index 6e73908..9580f05
@@ -15,6 +15,9 @@
    - name: install pip
      apt: pkg=python-pip state=installed
 
+   - name: install setuptools
+     pip: name=setuptools state=latest
+
    - name: install zerorpc
      pip: name=zerorpc
 
 
    - name: install argparse
      pip: name=argparse
+
+   - name: install networkx
+     pip: name=networkx
+
+   - name: install six
+     pip: name=six
+
+   - name: install ryu
+     pip: name=ryu
+     
+   - name: install oslo.config
+     pip: name=oslo.config
+
+   - name: install pytest
+     pip: name=pytest