From df6357724380993d3931fb014f769c9120f05d57 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Mon, 25 Oct 2010 14:57:50 -0200 Subject: [PATCH] added lxml to setup.py install_requires, if using setuptools. refs #147 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fe185117d..6786d9c49 100644 --- a/setup.py +++ b/setup.py @@ -116,7 +116,7 @@ setup_args = { try: from setuptools import setup - setup_args['install_requires'] = ['Twisted>=2.5'] + setup_args['install_requires'] = ['Twisted>=2.5', 'lxml'] except ImportError: from distutils.core import setup