Make pip install dependancies.

Pip was not installing the dependancies with 'requires' in setup.py.
Using 'install_requires' instead fixes this.
This commit is contained in:
O. Emmerson 2014-02-11 17:03:47 +00:00
parent 607e3eae58
commit b5d0d4ba38

View file

@ -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',