virtualenv/web/res/res_create_env.py
changeset 718 5e27a39d3742
parent 682 11be1c2aae5a
child 723 6fe56c8896e3
equal deleted inserted replaced
717:d66abfc1cb87 718:5e27a39d3742
     5 system_str = platform.system()
     5 system_str = platform.system()
     6 
     6 
     7 
     7 
     8 INSTALLS = [ #(key,method, option_str, dict_extra_env)
     8 INSTALLS = [ #(key,method, option_str, dict_extra_env)
     9     'LXML',
     9     'LXML',
    10     'PYLUCENE',
       
    11     'PSYCOPG2',
    10     'PSYCOPG2',
    12     'SOUTH',
    11     'SOUTH',
    13     'PIL', 
    12     'PIL', 
    14     'DJANGO',
    13     'DJANGO',
    15     'DJANGO-EXTENSIONS',
    14     'DJANGO-EXTENSIONS',
    24     'SOCIAL_AUTH',
    23     'SOCIAL_AUTH',
    25     'DJANGO_GUARDIAN',
    24     'DJANGO_GUARDIAN',
    26     'SORL_THUMBNAIL',
    25     'SORL_THUMBNAIL',
    27 ]
    26 ]
    28 
    27 
    29 if system_str == 'Windows':
       
    30     INSTALLS.insert(0, 'JCC')
       
    31 
       
    32 if system_str == "Linux":
    28 if system_str == "Linux":
    33     INSTALLS.insert(2, 'DISTRIBUTE')
    29     INSTALLS.insert(2, 'DISTRIBUTE')
    34 
    30 
    35 OPTIONS_TO_ADD = ['clear', 'type_install=local', 'unzip_setuptools']
    31 OPTIONS_TO_ADD = ['clear', 'type_install=local', 'unzip_setuptools']
    36 if system_str != 'Linux':
    32 if system_str != 'Linux':