blob: 5e33d5399fc731ca1e448e80ad35e35ce3e6475e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
[app]
# Title of your application
title = pyside_app_demo
# Project root directory. Default: The parent directory of input_file
project_dir =
# Source file entry point path. Default: main.py
input_file =
# Directory where the executable output is generated
exec_directory =
# Path to the project file relative to project_dir
project_file =
# Application icon
icon =
[python]
# Python path
python_path =
# Python packages to install
packages = Nuitka==2.7.11
# Buildozer: for deploying Android application
android_packages = buildozer==1.5.0,cython==0.29.33
[qt]
# Paths to required QML files. Comma separated
# Normally all the QML files required by the project are added automatically
# Design Studio projects include the QML files using Qt resources
qml_files =
# Excluded qml plugin binaries
excluded_qml_plugins =
# Qt modules used. Comma separated
modules =
# Qt plugins used by the application. Only relevant for desktop deployment
# For Qt plugins used in Android application see [android][plugins]
plugins =
[android]
# Path to PySide wheel
wheel_pyside =
# Path to Shiboken wheel
wheel_shiboken =
# Plugins to be copied to libs folder of the packaged application. Comma separated
plugins =
[nuitka]
# Usage description for permissions requested by the app as found in the Info.plist file
# of the app bundle. Comma separated
# eg: NSCameraUsageDescription:CameraAccess
macos.permissions =
# Mode of using Nuitka. Accepts standalone or onefile. Default: onefile
mode = onefile
# Specify any extra nuitka arguments
# eg: extra_args = --show-modules --follow-stdlib
extra_args = --quiet --noinclude-qt-translations
[buildozer]
# Build mode
# Possible values: [release, debug]
# Release creates a .aab, while debug creates a .apk
mode = debug
# Path to PySide6 and shiboken6 recipe dir
recipe_dir =
# Path to extra Qt Android .jar files to be loaded by the application
jars_dir =
# If empty, uses default NDK path downloaded by buildozer
ndk_path =
# If empty, uses default SDK path downloaded by buildozer
sdk_path =
# Other libraries to be loaded at app startup. Comma separated.
local_libs =
# Architecture of deployed platform
# Possible values: ["aarch64", "armv7a", "i686", "x86_64"]
arch =
|