diff -r e27a08b0a037 -r 9e29d68d48f1 virtualenv/sync/res/res_create_env.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/virtualenv/sync/res/res_create_env.py Fri Aug 24 17:44:08 2012 +0200 @@ -0,0 +1,18 @@ +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) +