virtualenv/setup/res/res_create_env.py
author rougeronj
Thu, 14 Feb 2013 15:57:32 +0100
branchchunked_upload
changeset 1105 717aff3b784e
parent 744 960e4d8d8acd
permissions -rw-r--r--
Backed out of changeset 1102:946a601ab64a

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)