From b5d0d4ba38611d26013dab467f95e860ebb4f889 Mon Sep 17 00:00:00 2001 From: "O. Emmerson" Date: Tue, 11 Feb 2014 17:03:47 +0000 Subject: [PATCH] Make pip install dependancies. Pip was not installing the dependancies with 'requires' in setup.py. Using 'install_requires' instead fixes this. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 843f1d7..92ba3c2 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( url = 'http://lkiesow.github.io/python-feedgen', keywords = ['feed','ATOM','RSS','podcast'], license = 'FreeBSD and LGPLv3+', - requires = ['lxml', 'dateutils'], + install_requires = ['lxml', 'dateutils'], classifiers = [ 'Development Status :: 4 - Beta', 'Development Status :: 5 - Production/Stable',