ansible-nginx-supervisor/tasks/python.yaml

16 lines
301 B
YAML

---
- name: install Python setuptools dependencies
sudo: yes
apt: pkg={{ item }} state=present
with_items:
- python-dev
- python-setuptools
- name: bootstrap PIP using setuptools
sudo: yes
easy_install: name=pip
- name: install Python virtualenv
sudo: yes
pip: name=virtualenv