From a71fa8de9e8574f993a6ed56565203fe72cc6f0a Mon Sep 17 00:00:00 2001 From: walkjivefly Date: Fri, 30 Nov 2018 12:31:54 +0700 Subject: [PATCH] Add missing pre-reqs Attempting to install 0.10.2 from PyPI failed because docutils and wheel were not installed. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 1ff66ae..59dbe2a 100755 --- a/setup.py +++ b/setup.py @@ -15,6 +15,8 @@ setup( 'libagent.ssh' ], install_requires=[ + 'docutils>=0.14', + 'wheel>=0.32.3', 'backports.shutil_which>=3.5.1', 'ConfigArgParse>=0.12.1', 'python-daemon>=2.1.2',