update setup.py so that users can pip install nvchecker without other steps

This commit is contained in:
lilydjwg 2018-06-27 16:01:51 +08:00
parent c537cf20fc
commit 00f7dccb39

View File

@ -18,7 +18,10 @@ setup(
zip_safe = False,
packages = find_packages(exclude=["tests"]),
install_requires = ['setuptools', 'structlog'],
install_requires = ['setuptools', 'structlog', 'tornado>=5', 'pycurl'],
extras_require = {
'vercmp': ['pyalpm'],
},
tests_require = [
'pytest',
'pytest-asyncio',