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:
parent
607e3eae58
commit
b5d0d4ba38
1 changed files with 1 additions and 1 deletions
2
setup.py
2
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',
|
||||
|
|
Loading…
Reference in a new issue