Added psutil for Windows platform 🐛

This commit is contained in:
Koen van Eijk 2024-06-09 00:26:29 +02:00
parent bb1cfc51c5
commit bd3b890e05

View File

@ -29,7 +29,7 @@ def install_doctr():
install_doctr() install_doctr()
# Define OS-specific dependencies # Define OS-specific dependencies
extras_require = {"windows": ["pywin32"], "macos": ["pyobjc"], "linux": []} extras_require = {"windows": ["pywin32", "psutil"], "macos": ["pyobjc"], "linux": []}
# Determine the current OS # Determine the current OS
current_os = platform.system().lower() current_os = platform.system().lower()