Files
LCE-Qt-Launcher/pysidedeploy.spec
xgui4 3a610d30b8 Add new assets and implement theme settings
- Added a new pointer image to the assets directory.
- Created dark and light stylesheet files for UI theming.
- Implemented a settings dialog with placeholder text.
- Defined a Theme enumeration to manage different UI themes.
-  and more
2026-03-18 20:51:31 -04:00

47 lines
1017 B
Python

[app]
# title of your application
title = LCE Qt Launcher
# project root directory. default = The parent directory of input_file
project_dir = .
# source file entry point path. default = main.py
input_file = src/main.py
# directory where the executable output is generated
exec_directory = output/
# path to the project file relative to project_dir
project_file = pyproject.toml
# application icon
icon = assets/app.ico
[python]
packages = Nuitka==2.7.11,PySide6
python_packages = Nuitka==2.7.11,PySide6
python_path = .venv/bin/python
[qt]
# qt modules used. comma separated
modules = Core,DBus,Gui,Widgets
qml_files =
plugins = accessiblebridge,egldeviceintegrations,generic,iconengines,imageformats,platforminputcontexts,platforms,platforms/darwin,platformthemes,styles,xcbglintegrations
[nuitka]
# mode of using nuitka. accepts standalone or onefile. default = onefile
mode = standalone
extra_args = --quiet
[buildozer]
# build mode
mode = release
# architecture of deployed platform
arch = x86_64