--- a/virtualenv/web/res/res_create_env.py Fri Apr 08 16:33:01 2011 +0200
+++ b/virtualenv/web/res/res_create_env.py Thu Apr 14 17:39:36 2011 +0200
@@ -18,26 +18,30 @@
('MYSQL', 'pip', None, None),
('PIL', 'easy_install', None, None),
('DJANGO','pip', None, None),
- ('JOGGING','pip', None, None),
('DJANGO-EXTENSIONS', 'pip', None, None),
('DJANGO-REGISTRATION', 'easy_install', '-Z', None),
('DJANGO-TAGGING', 'pip', None, None),
- ('DJANGO-PISTON', 'pip', None, None),
('HTTPLIB2', 'pip', None, None),
('OAUTH2', 'easy_install', None, None),
('DJANGO-OAUTH-PLUS', 'pip', None, None),
+ ('OPENID', 'pip', None, None),
+ ('DJANGO_OPENID_CONSUMER', 'pip', None, None),
+ ('SOCIAL_AUTH', 'easy_install', None, None),
])
if system_str == 'Windows':
INSTALLS.extend([
('JCC','easy_install',None,None),
+ ('PSYCOPG2',install_psycopg2,None,None),
('PYLUCENE','easy_install',None,None),
- ('PSYCOPG2',install_psycopg2,None,None),
+ # We have to install piston after and manually with pip install django-piston-0.2.2-modified.tar.gz, after having launched the virtualenv
+ #('DJANGO-PISTON', 'pip', None, None),
])
else:
INSTALLS.extend([
('PYLUCENE',install_pylucene,None,None),
('PSYCOPG2', 'pip', None, None),
+ ('DJANGO-PISTON', 'pip', None, None),
])
if system_str == "Darwin":
@@ -46,7 +50,8 @@
])
else:
INSTALLS.extend([
- ('LXML', 'pip', None, None),
+ # We have to install lxml after and manually with easy_install lxml-2.2.2-py2.6-win32.egg, after having launched the virtualenv
+ #('LXML', 'easy_install', None, None),
])