add caching
Package Application with PyInstaller / build (push) Successful in 26s

This commit is contained in:
LunaChocken
2025-06-09 17:26:44 +01:00
parent 711579e2b1
commit 153bf640be
3 changed files with 13 additions and 8 deletions
+4 -1
View File
@@ -1,11 +1,14 @@
# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_data_files
datas = []
datas += collect_data_files('cachier')
a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[],
datas=datas,
hiddenimports=[],
hookspath=[],
hooksconfig={},