From e490d2575602552ed5709893f6e4c3906a1e74a0 Mon Sep 17 00:00:00 2001 From: Rolf Krahl Date: Sun, 15 Oct 2023 21:53:38 +0200 Subject: [PATCH] Add PySide2 to install_requires --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1b9fbf1..ba3f51c 100644 --- a/setup.py +++ b/setup.py @@ -133,6 +133,6 @@ def run(self): packages = ["photoidx", "photoidx.qt"], scripts = ["scripts/photo-idx.py", "scripts/imageview.py"], python_requires = ">=3.6", - install_requires = ["packaging", "PyYAML", "ExifRead >= 2.2.0"], + install_requires = ["packaging", "PyYAML", "ExifRead >= 2.2.0", "PySide2"], cmdclass = dict(cmdclass, build_py=build_py, sdist=sdist, meta=meta), )