Added prototpye of SONATA gatekeeper API. Can already accept uploaded packages and...
[osm/vim-emu.git] / ansible / install.yml
old mode 100644 (file)
new mode 100755 (executable)
index c457343..cd43336
@@ -2,18 +2,48 @@
   tasks:
    - name: updates apt
      apt: update_cache=yes
+     
+   - name: install python-dev
+     apt: pkg=python-dev state=installed
+
+   - name: install python-zmq
+     apt: pkg=python-zmq state=installed
+
+   - name: install libzmq-dev
+     apt: pkg=libzmq-dev state=installed
 
    - name: install pip
      apt: pkg=python-pip state=installed
 
+   - name: install setuptools
+     pip: name=setuptools state=latest
+
    - name: install zerorpc
-     pip: name=zerorpc
+     pip: name=zerorpc state=latest
 
    - name: install tabulate
-     pip: name=tabulate
+     pip: name=tabulate state=latest
 
    - name: install argparse
-     pip: name=argparse
+     pip: name=argparse state=latest
+
+   - name: install networkx
+     pip: name=networkx state=latest
+
+   - name: install six
+     pip: name=six state=latest
+
+   - name: install ryu
+     pip: name=ryu state=latest
+     
+   - name: install oslo.config
+     pip: name=oslo.config state=latest
+
+   - name: install pytest
+     pip: name=pytest state=latest
+
+   - name: install Flask
+     pip: name=Flask state=latest
 
-   - name: install pprint
-     pip: name=pprint
+   - name: install flask_restful
+     pip: name=flask_restful state=latest