9 lines
278 B
Python
9 lines
278 B
Python
"""
|
|
PyInstaller runtime hook for CustomTkinter.
|
|
Ensures theme assets are found in bundled executable.
|
|
"""
|
|
from PyInstaller.utils.hooks import collect_data_files, collect_submodules
|
|
|
|
datas = collect_data_files('customtkinter')
|
|
hiddenimports = collect_submodules('customtkinter')
|