clean virtualenv
authorymh <ymh.work@gmail.com>
Wed, 20 Apr 2011 11:30:32 +0200
changeset 65 e96c79ca2ebc
parent 64 d0d63c677c1f
child 66 8a7530e28185
clean virtualenv
virtualenv/res/lib/lib_create_env.py
virtualenv/web/res/res_create_env.py
--- a/virtualenv/res/lib/lib_create_env.py	Wed Apr 20 11:05:59 2011 +0200
+++ b/virtualenv/res/lib/lib_create_env.py	Wed Apr 20 11:30:32 2011 +0200
@@ -13,6 +13,7 @@
 
 
 URLS = {
+    #'': {'setup': '', 'url':'', 'local':''},
     'DISTRIBUTE': {'setup': 'distribute', 'url':'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.14.tar.gz', 'local':"distribute-0.6.14.tar.gz"},
     'DJANGO': {'setup': 'django', 'url': 'http://www.djangoproject.com/download/1.3/tarball/', 'local':"Django-1.3.tar.gz"},
     'DJANGO-EXTENSIONS': { 'setup': 'django-extensions', 'url':'https://github.com/django-extensions/django-extensions/tarball/0.6', 'local':"django-extensions-0.6.tar.gz"},
--- a/virtualenv/web/res/res_create_env.py	Wed Apr 20 11:05:59 2011 +0200
+++ b/virtualenv/web/res/res_create_env.py	Wed Apr 20 11:30:32 2011 +0200
@@ -46,9 +46,13 @@
     INSTALLS.extend([
     ('LXML', 'pip', None, {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.7.8', 'LIBXSLT_VERSION': '1.1.26'}),
     ])
+elif system_str == "Windows":
+    INSTALLS.extend([
+    ('LXML', 'easy_install', None, None),
+    ])
 else:
     INSTALLS.extend([
-    ('LXML', 'easy_install', None, None),
+    ('LXML', 'pip', None, None),
     ])