equal
deleted
inserted
replaced
|
1 import platform |
|
2 |
|
3 from lib_create_env import lib_generate_install_methods |
|
4 |
|
5 system_str = platform.system() |
|
6 |
|
7 |
|
8 INSTALLS = [#(key,method, option_str, dict_extra_env) |
|
9 ] |
|
10 |
|
11 OPTIONS_TO_ADD = ['clear', 'type_install=local', "unzip-setuptools", "use_distribute"] |
|
12 |
|
13 def generate_install_methods(path_locations, src_base, Logger, call_subprocess): |
|
14 return lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, INSTALLS, OPTIONS_TO_ADD) |
|
15 |