- name: Install virtenv
  command: "pyvenv-3.5 env"
  args:
      chdir: "{{orchard_ows_export_document_root}}"
  tags:
      - orchard-ows-export-init
- name: Upgrade PIP
  pip: 
    name: ""
    virtualenv: "{{orchard_ows_export_document_root}}/env"
    virtualenv_python: python3.5
    extra_args: --upgrade pip
  become: yes
  tags:
      - orchard-ows-export-init
- name: Install requirements
  pip: 
    requirements: "{{orchard_ows_export_document_root}}/reqs.pip"
    virtualenv: "{{orchard_ows_export_document_root}}/env"
    virtualenv_python: python3.5
  tags:
      - orchard-ows-export-init
- name: Install Dev requirements
  command: "{{orchard_ows_export_document_root}}/env/bin/python3.5 {{orchard_ows_export_document_root}}/setup.py develop"
  args:
    chdir: "{{orchard_ows_export_document_root}}"
  tags:
      - orchard-ows-export-init