From bd3b890e0539394f6a110085fec2377f6fc21d1a Mon Sep 17 00:00:00 2001 From: Koen van Eijk Date: Sun, 9 Jun 2024 00:26:29 +0200 Subject: [PATCH] =?UTF-8?q?Added=20psutil=20for=20Windows=20platform=20?= =?UTF-8?q?=F0=9F=90=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 677c7ca..c57134d 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def install_doctr(): install_doctr() # Define OS-specific dependencies -extras_require = {"windows": ["pywin32"], "macos": ["pyobjc"], "linux": []} +extras_require = {"windows": ["pywin32", "psutil"], "macos": ["pyobjc"], "linux": []} # Determine the current OS current_os = platform.system().lower()