fix dependency to bibtexparser

Under certain circumstances, when installing bibtexparser 1.0.1 release
in develop mode, it can be recognized as bibtexparser 1.0 by the
pkg_resource module, preventing pubs to execute. This is obviously very
bad.
This commit is contained in:
Fabien C. Y. Benureau 2018-02-21 14:23:47 +09:00
parent adbeb7f2b3
commit 596ea81a34

View File

@ -25,7 +25,7 @@ setup(
],
},
install_requires=['pyyaml', 'bibtexparser>=1.0.1', 'python-dateutil', 'requests',
install_requires=['pyyaml', 'bibtexparser>=1.0', 'python-dateutil', 'requests',
'configobj',
'beautifulsoup4'], # to be made optional?
tests_require=['pyfakefs>=2.7'],