virtualenv/setup/create_python_env.py
changeset 668 b52724db32ab
parent 50 0d59e0522d36
equal deleted inserted replaced
667:9e64be35704f 668:b52724db32ab
    19 here = os.path.dirname(os.path.abspath(__file__))
    19 here = os.path.dirname(os.path.abspath(__file__))
    20 base_dir = here
    20 base_dir = here
    21 script_name = os.path.join(base_dir, 'project-boot.py')
    21 script_name = os.path.join(base_dir, 'project-boot.py')
    22 
    22 
    23 import virtualenv
    23 import virtualenv
    24 
       
    25 # things to install
       
    26 # - psycopg2 -> pip
       
    27 # - PIL -> pip
       
    28 # - pyxml -> pip
       
    29 # - 4Suite-xml - easy_install ftp://ftp.4suite.org/pub/4Suite/4Suite-XML-1.0.2.tar.bz2
       
    30 # - pylucene  - script
       
    31 
    24 
    32 src_base = os.path.abspath(os.path.join(here,"..","res","src")).replace("\\","/")
    25 src_base = os.path.abspath(os.path.join(here,"..","res","src")).replace("\\","/")
    33 lib_path = os.path.abspath(os.path.join(here,"..","res","lib")).replace("\\","/")
    26 lib_path = os.path.abspath(os.path.join(here,"..","res","lib")).replace("\\","/")
    34 patch_path = os.path.abspath(os.path.join(here,"res","patch")).replace("\\","/")
    27 patch_path = os.path.abspath(os.path.join(here,"res","patch")).replace("\\","/")
    35 
    28