From 7e50b24b6bda1cf144ace49c1a2e39b31cc5430f Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Mon, 2 May 2011 10:46:10 +0200 Subject: [PATCH] Revert "Uncomment python dependencies." (closes #654) This reverts commit dce76d35f8c5afe7e495943bd969dd6f8f5790f9. It is really CRAPPY to add a hard dependencies to optional things like PyQt. --- setup.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/setup.py b/setup.py index f1f9af20..204dba0e 100755 --- a/setup.py +++ b/setup.py @@ -200,20 +200,20 @@ setup( data_files=data_files, install_requires=[ - 'ClientForm', - 'elementtidy', - 'FeedParser', - 'gdata', - 'html5lib', - 'lxml', - 'Mako', - 'mechanize', - 'PIL', - 'PyQt', - 'python-dateutil', - 'PyYAML', - 'Routes', - 'simplejson', - 'WebOb', + # 'ClientForm', # python-clientform + # 'elementtidy', # python-elementtidy + # 'FeedParser', # python-feedparser + # 'gdata', # python-gdata + # 'html5lib', # python-html5lib + # 'lxml', # python-lxml + # 'Mako', # python-mako + # 'mechanize', # python-mechanize + # 'PIL', # python-imaging + # 'PyQt', # python-qt4 + # 'python-dateutil', # python-dateutil + # 'PyYAML', # python-yaml + # 'Routes', # python-routes + # 'simplejson', # python-simplejson + # 'WebOb', # python-webob ], )