virtualenv/sync/create_python_env.py
changeset 668 b52724db32ab
parent 632 e85856bfd59b
child 671 fc56b4c9e4f3
--- a/virtualenv/sync/create_python_env.py	Thu Jun 14 10:18:38 2012 +0200
+++ b/virtualenv/sync/create_python_env.py	Thu Jun 14 15:01:50 2012 +0200
@@ -22,13 +22,6 @@
 
 import virtualenv
 
-# things to install
-# - psycopg2 -> pip
-# - PIL -> pip
-# - pyxml -> pip
-# - 4Suite-xml - easy_install ftp://ftp.4suite.org/pub/4Suite/4Suite-XML-1.0.2.tar.bz2
-# - pylucene  - script
-
 src_base = os.path.abspath(os.path.join(here,"..","res","src")).replace("\\","/")
 lib_path = os.path.abspath(os.path.join(here,"..","res","lib")).replace("\\","/")
 patch_path = os.path.abspath(os.path.join(here,"res","patch")).replace("\\","/")
@@ -37,8 +30,9 @@
 EXTRA_TEXT  = "import sys\n"
 EXTRA_TEXT += "sys.path.append('%s')\n" % (lib_path)
 EXTRA_TEXT += "sys.path.append('%s')\n" % (os.path.abspath(os.path.join(here,"res")).replace("\\","/"))
-EXTRA_TEXT += "from res_create_env import generate_install_methods\n"
+EXTRA_TEXT += "from res_create_env import generate_install_methods, add_options\n"
 EXTRA_TEXT += "adjust_options, extend_parser, after_install = generate_install_methods(path_locations, '%s', Logger, call_subprocess)\n" % (src_base)
+EXTRA_TEXT += "add_options()"
 
 
 def main():