default.spec 2.2 KB

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