virtualenv/sync/res/res_create_env.py
author bastiena
Thu, 20 Sep 2012 04:12:52 +0200
changeset 100 db42ef1faa7a
parent 64 47a0d7568655
permissions -rw-r--r--
Front IDILL: help details updated for mouse interactions

import platform

from lib_create_env import lib_generate_install_methods

system_str = platform.system()

INSTALLS = [#(key,method, option_str, dict_extra_env)
    'PYCRYPTO',
    'SSH',
    'FABRIC',
    'MERCURIAL',
]

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)