From 5c900dafd23beaa057ecf379c4ebb1729d2764d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20Se=C3=9Fler?= Date: Fri, 3 May 2024 08:48:21 +0200 Subject: [PATCH] Add install dependencies to setup.cfg If these dependencies are not declared in setup.cfg, they won't be installed when installing the wheel for wexpect. As they are obviously required for running wexpect, they should also be declared as runtime dependency and thus also be installed alongside wexpect. --- setup.cfg | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.cfg b/setup.cfg index 59a8a03..149b5d6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,6 +23,11 @@ classifier = keywords = scripting, automation, expect, pexpect, wexpect +[options] +install_requires = + pywin32 >= 220;platform_system=='Windows' + psutil >= 5.0.0 + [options.extras_require] test = coverage