2014-11-18 08:24:39 -05:00
|
|
|
---
|
|
|
|
- hosts: all
|
|
|
|
sudo: yes
|
|
|
|
tasks:
|
|
|
|
|
2014-11-19 16:27:37 -05:00
|
|
|
- name: Setup Python setuptools dependencies
|
|
|
|
apt: pkg={{ item }} state=present
|
|
|
|
with_items:
|
|
|
|
- python-dev
|
|
|
|
- python-setuptools
|
2014-11-18 08:24:39 -05:00
|
|
|
|
|
|
|
- name: Bootstrap PIP using Setuptools
|
2014-11-19 16:27:37 -05:00
|
|
|
easy_install: name=pip
|
2014-11-18 08:24:39 -05:00
|
|
|
|
2014-11-19 16:27:37 -05:00
|
|
|
- name: Basic Python dependencies
|
|
|
|
pip: name={{ item }} use_mirrors=no
|
|
|
|
with_items:
|
|
|
|
- virtualenv
|