virtualenv/web/res/res_create_env.py
changeset 70 8e3281bcebc9
parent 68 b40657713336
child 72 47e0f0eef1cc
equal deleted inserted replaced
69:4775601a2531 70:8e3281bcebc9
    16 INSTALLS.extend([ #(key,method, option_str, dict_extra_env)
    16 INSTALLS.extend([ #(key,method, option_str, dict_extra_env)
    17     ('SETUPTOOLS-HG', 'pip', None, None), 
    17     ('SETUPTOOLS-HG', 'pip', None, None), 
    18     ('MYSQL', 'pip', None, None),
    18     ('MYSQL', 'pip', None, None),
    19     ('PIL', 'easy_install', None, None), 
    19     ('PIL', 'easy_install', None, None), 
    20     ('DJANGO','pip', None, None),
    20     ('DJANGO','pip', None, None),
    21     ('JOGGING','pip', None, None),
       
    22     ('DJANGO-EXTENSIONS', 'pip', None, None),
    21     ('DJANGO-EXTENSIONS', 'pip', None, None),
    23     ('DJANGO-REGISTRATION', 'easy_install', '-Z', None),
    22     ('DJANGO-REGISTRATION', 'easy_install', '-Z', None),
    24     ('DJANGO-TAGGING', 'pip', None, None),
    23     ('DJANGO-TAGGING', 'pip', None, None),
    25     ('DJANGO-PISTON', 'pip', None, None),
    24     ('DJANGO-PISTON', 'pip', None, None),
    26     ('HTTPLIB2', 'pip', None, None),
    25     ('HTTPLIB2', 'pip', None, None),
    27     ('OAUTH2', 'easy_install', None, None),
    26     ('OAUTH2', 'easy_install', None, None),
    28     ('DJANGO-OAUTH-PLUS', 'pip', None, None),
    27     ('DJANGO-OAUTH-PLUS', 'pip', None, None),
       
    28     ('OPENID', 'pip', None, None),
       
    29     ('DJANGO_OPENID_CONSUMER', 'pip', None, None),
       
    30     ('SOCIAL_AUTH', 'easy_install', None, None),
    29     ('PHOTOLOGUE', 'pip', None, None),
    31     ('PHOTOLOGUE', 'pip', None, None),
    30     ('MODELTRANSLATION', 'pip', None, None),
    32     ('MODELTRANSLATION', 'pip', None, None),
    31 ])
    33 ])
    32 
    34 
    33 if system_str == 'Windows':
    35 if system_str == 'Windows':
    34     INSTALLS.extend([
    36     INSTALLS.extend([
    35     ('JCC','easy_install',None,None),
    37     ('JCC','easy_install',None,None),
       
    38     ('PSYCOPG2',install_psycopg2,None,None),
    36     ('PYLUCENE','easy_install',None,None),
    39     ('PYLUCENE','easy_install',None,None),
    37     ('PSYCOPG2',install_psycopg2,None,None),
       
    38     ])
    40     ])
    39 else:
    41 else:
    40     INSTALLS.extend([
    42     INSTALLS.extend([
    41     ('PYLUCENE',install_pylucene,None,None),
    43     ('PYLUCENE',install_pylucene,None,None),
    42     ('PSYCOPG2', 'pip', None, None),
    44     ('PSYCOPG2', 'pip', None, None),
    44 
    46 
    45 if system_str == "Darwin":
    47 if system_str == "Darwin":
    46     INSTALLS.extend([
    48     INSTALLS.extend([
    47     ('LXML', 'pip', None, {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.7.8', 'LIBXSLT_VERSION': '1.1.26'}),
    49     ('LXML', 'pip', None, {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.7.8', 'LIBXSLT_VERSION': '1.1.26'}),
    48     ])
    50     ])
       
    51 elif system_str == "Windows":
       
    52     INSTALLS.extend([
       
    53     ('LXML', 'easy_install', None, None),
       
    54     ])
    49 else:
    55 else:
    50     INSTALLS.extend([
    56     INSTALLS.extend([
    51     ('LXML', 'pip', None, None),
    57     ('LXML', 'pip', None, None),
    52     ])
    58     ])
    53 
    59