From 00f7dccb399429cce9ee2068ef6ee7ca2bce0597 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Wed, 27 Jun 2018 16:01:51 +0800 Subject: [PATCH] update setup.py so that users can pip install nvchecker without other steps --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 24d0b73..0d2a8b8 100755 --- a/setup.py +++ b/setup.py @@ -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',