| peusterm | 63a5538 | 2016-01-14 16:33:50 +0100 | [diff] [blame] | 1 | - hosts: localhost |
| peusterm | 61db576 | 2016-01-14 16:30:04 +0100 | [diff] [blame] | 2 | tasks: |
| 3 | - name: updates apt |
| 4 | apt: update_cache=yes |
| peusterm | c68c68e | 2016-01-14 16:57:57 +0100 | [diff] [blame] | 5 | |
| 6 | - name: install python-dev |
| 7 | apt: pkg=python-dev state=installed |
| 8 | |
| 9 | - name: install python-zmq |
| 10 | apt: pkg=python-zmq state=installed |
| 11 | |
| 12 | - name: install libzmq-dev |
| 13 | apt: pkg=libzmq-dev state=installed |
| peusterm | 61db576 | 2016-01-14 16:30:04 +0100 | [diff] [blame] | 14 | |
| 15 | - name: install pip |
| 16 | apt: pkg=python-pip state=installed |
| 17 | |
| stevenvanrossem | 7d4bfac | 2016-02-23 10:56:43 +0100 | [diff] [blame] | 18 | - name: install setuptools |
| 19 | pip: name=setuptools state=latest |
| 20 | |
| peusterm | 61db576 | 2016-01-14 16:30:04 +0100 | [diff] [blame] | 21 | - name: install zerorpc |
| 22 | pip: name=zerorpc |
| 23 | |
| 24 | - name: install tabulate |
| 25 | pip: name=tabulate |
| 26 | |
| 27 | - name: install argparse |
| 28 | pip: name=argparse |
| stevenvanrossem | a29c50c | 2016-02-16 14:37:44 +0100 | [diff] [blame] | 29 | |
| 30 | - name: install networkx |
| 31 | pip: name=networkx |
| 32 | |
| peusterm | a1a5ed0 | 2016-03-07 15:29:20 +0100 | [diff] [blame^] | 33 | - name: install six |
| 34 | pip: name=six |
| 35 | |
| stevenvanrossem | a29c50c | 2016-02-16 14:37:44 +0100 | [diff] [blame] | 36 | - name: install ryu |
| stevenvanrossem | 0e17de2 | 2016-02-18 16:22:05 +0100 | [diff] [blame] | 37 | pip: name=ryu |
| 38 | |
| 39 | - name: install oslo.config |
| 40 | pip: name=oslo.config |
| cgeoffroy | 840f179 | 2016-03-03 16:53:52 +0100 | [diff] [blame] | 41 | |
| 42 | - name: install pytest |
| 43 | pip: name=pytest |