1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
commit 6a48487fc6fd23a96b975d4f7d42a945383f32ce
Author: Stephen Kitt <skitt@debian.org>
Date: Mon Sep 1 13:33:07 2025 +0200
Mention the psutil dependency in setup.py
Signed-off-by: Stephen Kitt <skitt@debian.org>
diff --git a/setup.py b/setup.py
index a36cdf1..4002717 100644
--- a/setup.py
+++ b/setup.py
@@ -129,7 +129,7 @@ setup(
("/usr/bin/", ["bin/input-remapper-control"]),
("/usr/bin/", ["bin/input-remapper-reader-service"]),
],
- install_requires=["setuptools", "evdev", "pydbus", "pygobject", "pydantic"],
+ install_requires=["setuptools", "evdev", "psutil", "pydbus", "pygobject", "pydantic"],
cmdclass={
"install": Install,
},
|