From 81673ff1fcabdd02a99b3550605f1f996c94c158 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Wed, 1 Feb 2017 17:55:21 +0200 Subject: [PATCH] Add install_requires for setuptools This makes 'pip install' install everything that's needed for LinkChecker to actually work. Fixes #12. --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index b3b2f834..a825bb43 100755 --- a/setup.py +++ b/setup.py @@ -479,6 +479,9 @@ args = dict( options = { }, # Requirements, usable with setuptools or the new Python packaging module. + install_requires = [ + 'requests >= 2.2.0', + ], # Commented out since they are untested and not officially supported. # See also doc/install.txt for more detailed dependency documentation. #extra_requires = {