Remove version requirements

This commit is contained in:
BasioMeusPuga
2018-03-17 00:38:09 +05:30
parent a62e681223
commit 50089cb57a

View File

@@ -13,9 +13,9 @@ VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f: with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESC = f.read() LONG_DESC = f.read()
INSTALL_DEPS = ['PyQt5>=5.10.1', INSTALL_DEPS = ['PyQt5',
'requests>=2.18.4', 'requests',
'beautifulsoup4>=4.6.0'] 'beautifulsoup4']
TEST_DEPS = ['pytest', TEST_DEPS = ['pytest',
'unittest2'] 'unittest2']
DEV_DEPS = [] DEV_DEPS = []