From d93b0480f033a2f7456fd35d03eaf65f22b52676 Mon Sep 17 00:00:00 2001 From: Tero Paloheimo Date: Sat, 30 Dec 2023 19:55:25 +0200 Subject: [PATCH] Add dbus-python to required dependencies SafeEyes does not start without dbus-python and therefore it is added to required dependencies in setup.py. --- README.md | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f9d160..29d7f52 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Some Linux systems like Cent OS do not have matching dependencies available in t pip3 install virtualenv --user virtualenv --no-site-packages venv source venv/bin/activate - pip3 install dbus-python safeeyes + pip3 install safeeyes ``` 3. Start Safe Eyes from terminal diff --git a/setup.py b/setup.py index c7bc490..934f927 100644 --- a/setup.py +++ b/setup.py @@ -7,6 +7,7 @@ requires = [ 'babel', 'psutil', 'croniter', + 'dbus-python', 'PyGObject', 'python-xlib' ]