virtualenv/sync/res/res_create_env.py
changeset 16 e37a29d23c86
child 87 81a5cb5aa263
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/virtualenv/sync/res/res_create_env.py	Wed Jun 06 23:00:42 2012 +0200
@@ -0,0 +1,17 @@
+import platform
+
+from lib_create_env import lib_generate_install_methods, install_pylucene, install_psycopg2
+
+system_str = platform.system()
+
+
+INSTALLS = [#(key,method, option_str, dict_extra_env)
+    ('DISTRIBUTE', 'pip', None, None),
+    ('PYCRYPTO', 'pip', None, None),
+    ('SSH', 'pip', None, None),
+    ('FABRIC', 'pip', None, None),
+    ('MERCURIAL', 'pip', None, None),
+]
+
+def generate_install_methods(path_locations, src_base, Logger, call_subprocess):    
+    return lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, INSTALLS)