treewide: fix package structure

The static files need to be inside the module to be installed correctly
as part of the module.
This commit is contained in:
K900
2024-06-27 11:46:47 +03:00
committed by AAGaming
parent 6cd4fb5553
commit 5697d98862
30 changed files with 13 additions and 10 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ from PyInstaller.utils.hooks import copy_metadata
a = Analysis(
['main.py'],
datas=[
('locales', 'locales'),
('static', 'static'),
('decky_loader/locales', 'decky_loader/locales'),
('decky_loader/static', 'decky_loader/static'),
] + copy_metadata('decky_loader'),
hiddenimports=['logging.handlers', 'sqlite3', 'decky_plugin', 'decky'],
)