Bugfix: Add missing packages to install_requires

This commit is contained in:
2023-01-17 13:22:38 +01:00
parent 9202aedf7f
commit d203958b5f
4 changed files with 9 additions and 7 deletions

View File

@@ -1,8 +1,9 @@
Pyinstaller
PyQt5>=5.14.1
revpimodio2>=2.5.6
zeroconf>=0.24.4
setuptools>=65.6.3 setuptools>=65.6.3
wheel wheel
Pyinstaller
keyring>=23.13.1
PyQt5>=5.14.1
paramiko>=2.12.0 paramiko>=2.12.0
keyring>=23.13.1 revpimodio2>=2.5.6
zeroconf>=0.24.4

View File

@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "RevPi Commander" #define MyAppName "RevPi Commander"
#define MyAppVersion "0.9.10rc4" #define MyAppVersion "0.9.10rc5"
#define MyAppPublisher "Sven Sager" #define MyAppPublisher "Sven Sager"
#define MyAppURL "https://revpimodio.org/" #define MyAppURL "https://revpimodio.org/"
#define MyAppICO "data\revpicommander.ico" #define MyAppICO "data\revpicommander.ico"

View File

@@ -19,6 +19,7 @@ setup(
install_requires=[ install_requires=[
"keyring", "keyring",
"PyQt5", "PyQt5",
"paramiko",
"revpimodio2", "revpimodio2",
"zeroconf" "zeroconf"
], ],

View File

@@ -3,4 +3,4 @@
__author__ = "Sven Sager" __author__ = "Sven Sager"
__copyright__ = "Copyright (C) 2023 Sven Sager" __copyright__ = "Copyright (C) 2023 Sven Sager"
__license__ = "GPLv3" __license__ = "GPLv3"
__version__ = "0.9.10rc4" __version__ = "0.9.10rc5"