virtualenv/setup/res/res_create_env.py
author ndurand
Fri, 27 Mar 2015 18:07:56 +0100
changeset 1360 f69b5d8ba4b9
parent 744 960e4d8d8acd
permissions -rw-r--r--
started upgrading to Django 1.6: fixed transactions, settings, switched django_social_auth to python_social_auth

import platform

from lib_create_env import lib_generate_install_methods

system_str = platform.system()


INSTALLS = [#(key,method, option_str, dict_extra_env)
]

OPTIONS_TO_ADD = ['clear', 'type_install=local', "unzip-setuptools", "use_distribute"]

def generate_install_methods(path_locations, src_base, Logger, call_subprocess):    
    return lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, INSTALLS, OPTIONS_TO_ADD)