From 88385daccd76af91830c91d4080f644224b8f2d9 Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Fri, 30 Jul 2010 17:59:02 +0200 Subject: [PATCH] add dependencies to setup.py --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/setup.py b/setup.py index 2abc0a60..d8a1b8a7 100755 --- a/setup.py +++ b/setup.py @@ -40,5 +40,20 @@ setup( packages=find_packages(), scripts=[os.path.join('scripts', script) for script in os.listdir('scripts')], install_requires=[ + '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 ], )