Fix python-poppler-qt5 version check

This commit is contained in:
BasioMeusPuga
2018-03-16 21:10:28 +05:30
parent efe52cd3cb
commit a62e681223

View File

@@ -15,8 +15,7 @@ with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
INSTALL_DEPS = ['PyQt5>=5.10.1', INSTALL_DEPS = ['PyQt5>=5.10.1',
'requests>=2.18.4', 'requests>=2.18.4',
'beautifulsoup4>=4.6.0', 'beautifulsoup4>=4.6.0']
'python-poppler-qt5>=0.24.2']
TEST_DEPS = ['pytest', TEST_DEPS = ['pytest',
'unittest2'] 'unittest2']
DEV_DEPS = [] DEV_DEPS = []
@@ -72,6 +71,7 @@ setup(
# $ pip install -e .[dev,test] # $ pip install -e .[dev,test]
extras_require={ extras_require={
'dev': DEV_DEPS, 'dev': DEV_DEPS,
'test': TEST_DEPS 'test': TEST_DEPS,
'PDF': ['python-poppler-qt5']
}, },
) )