Full Code of Nuitka/Nuitka-Action for AI

main 8220b75fdf7e cached
11 files
56.9 KB
13.5k tokens
8 symbols
1 requests
Download .txt
Repository: Nuitka/Nuitka-Action
Branch: main
Commit: 8220b75fdf7e
Files: 11
Total size: 56.9 KB

Directory structure:
gitextract_oqopjvl7/

├── .gitignore
├── .vscode/
│   └── settings.json
├── LICENSE
├── README.rst
├── action.yml
├── action.yml.j2
├── requirements-dev.in
├── requirements-dev.txt
├── requirements.in
├── requirements.txt
└── update-from-nuitka-options.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================

venv
/.idea/


================================================
FILE: .vscode/settings.json
================================================
{
    "cSpell.words": [
        "pyside",
        "tkinter",
        "zstandard"
    ]
}

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2024 Jim Kring, Kay Hayen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.rst
================================================
###############
 Nuitka-Action
###############

This GitHub Action builds **Windows**, **macOS**, and **Linux** programs
and extension modules from **Python** using the highly compatible
`Nuitka <https://github.com/Nuitka/Nuitka>`_ Python compiler.

**************
 Key Features
**************

-  **Standalone Executables**: Compile your **Python** code into
   standalone executables (``*.exe`` or ``*.bin`` files, and ``.app``
   bundles for Mac).

-  **Binary Python Modules**: Create binary ``*.pyd`` modules that can
   be imported by other **Python** scripts. This is useful for
   distributing parts of your **Python** project as compiled libraries.

-  **Cross-Platform Compatibility**: Build for Windows, macOS (including
   ``.app`` bundles), and Linux from a single workflow.

-  **GUI Framework Support**: Seamlessly compile applications using
   popular GUI frameworks such as TkInter, `PySide6
   <https://pypi.org/project/PySide6/>`_, and `PyQt6
   <https://pypi.org/project/PyQt6/>`_.

-  **Comprehensive Nuitka Features**: Leverage the full power of the
   `Nuitka Python Compiler <https://nuitka.net>`_, including support for
   `Nuitka Commercial Features
   <https://nuitka.net/doc/commercial.html>`_ like obfuscation,
   embedding data files, and more support for `Nuitka Commercial
   Features <https://nuitka.net/doc/commercial.html>`_ like obfuscation,
   embedding data files, and more (for those with a license).

***************
 Simple to Use
***************

See :ref:`Usage Details <usage-details>` below for more info.

1) Create a **Python** script
=============================

.. code:: python

   ## hello_world.py
   print("hello world!")

Run it in python

.. code:: console

   C:\> python hello_world.py
   hello world!

2) Build an executable
======================

Use this action as a step in one of your project's CI workflow jobs
(:ref:`details below <usage-details>`):

.. code:: yaml

   # Build python script into a stand-alone exe
   - uses: Nuitka/Nuitka-Action@main
     with:
       nuitka-version: main
       script-name: hello_world.py

3) Run the executable
=====================

.. code:: console

   C:\> hello_world.exe
   hello world!

*********************
 Current Limitations
*********************

-  There are not enough examples yet that demonstrate how to use this
   action in practice. Please help proving them. But everything that's
   possible with **Nuitka** should work just fine doing it in a workflow
   with this Action.

**************
 Common traps
**************

-  Uploading artifacts should make sure ``include-hidden-files`` is
   present or else incomplete folders will be copied in case of
   ``.libs`` folders.

-  For ``mode`` the value ``app`` is the default and needs to be
   switched. For packages you need to use ``module``.

***********************
 Some Example Projects
***********************

We need to add a repository demonstrating how to use the different modes
and typical applications. Help is welcome.

.. _usage-details:

***************
 Usage Details
***************

See action.yml for details on how this action works under the hood. It
is actually extremely simple.

Build a python script into an exe
=================================

.. code:: yaml

   jobs:

     build:
       runs-on: windows-latest

       steps:

         # Check-out repository
         - uses: actions/checkout@v4

         # Setup Python
         - uses: actions/setup-python@v5
           with:
             python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
             architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

         # Build python script into a single execute or app folder (macOS)
         - uses: Nuitka/Nuitka-Action@main
           with:
             nuitka-version: main
             script-name: hello_world.py
             mode: app

         # Uploads artifact
         - name: Upload Artifact
           uses: actions/upload-artifact@v4
           with:
             name: exe
             path: build/hello_world.exe
             include-hidden-files: true

GUI Builds
==========

Similar to the others, but with ``enable-plugins: pyside6`` or
``enable-plugins:tk-inter`` to ensure that those libraries are included
correctly.

.. code:: yaml

   - name: Qt GUI with PySide6
     uses: Nuitka/Nuitka-Action@main
     with:
       nuitka-version: main
       script-name: my_qt_gui_app.py
       mode: standalone
       enable-plugins: pyside6

.. code:: yaml

   - name: Python GUI With TkInter
     uses: Nuitka/Nuitka-Action@main
     with:
       nuitka-version: main
       script-name: my_tkinter_gui_app.py
       mode: standalone
       enable-plugins: tk-inter

Multi-Platform Builds
=====================

Configure a runner of the appropriate operating system to build for a
given platform. You can even do multiple platforms in a single workflow
using a matrix strategy, as shown below:

.. code:: yaml

   jobs:
     build:
       strategy:
         matrix:
           os: [macos-latest, ubuntu-latest, windows-latest]

       runs-on: ${{ matrix.os }}

       steps:
         - name: Check-out repository
           uses: actions/checkout@v4

         - name: Setup Python
           uses: actions/setup-python@v5
           with:
             python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax
             architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
             cache: 'pip'
             cache-dependency-path: |
               **/requirements*.txt

         - name: Install Dependencies
           run: |
             pip install -r requirements.txt -r requirements-dev.txt

         - name: Build Executable
           uses: Nuitka/Nuitka-Action@main
           with:
             nuitka-version: main
             script-name: your_script.py
             mode: app

         - name: Upload Artifacts
           uses: actions/upload-artifact@v4
           with:
             name: ${{ runner.os }} Build
             path: |
               build/*.exe
               build/*.bin
               build/*.app/**/*
               build/*.dist/**/*
             include-hidden-files: true

You will see that it creates executable binaries for Mac, Linux, and
Windows.

Python and Package Dependencies
===============================

This action installs the following **Python** packages specified by the
requirements.txt of this action repo.

.. code:: text

   ordered-set==4.1.0
       # via -r requirements.in
   wheel==0.38.4
       # via -r requirements.in
   zstandard==0.20.0

Value syntax
============

Since Action workflows accept no list values, for options that in
**Nuitka** can be given multiple times, there is support for splitting
those arguments by newline, which allows you to specify multiple values
like this.

.. code:: yaml

   include-data-dir: |
     source_path_dir1=dest_path_dir1
     source_path_dir2=dest_path_dir2
     source_path_dir3=dest_path_dir3

**************************
 Additional Documentation
**************************

See `Nuitka <https://github.com/Nuitka/Nuitka>`_ for full documentation
on Nuitka. It's a really fantastic tool!

*********
 License
*********

**Nuitka Action** scripts and documentation in this project are under
the `MIT License <LICENSE>`_.

**Nuitka** has the `Apache 2.0 License
<https://github.com/Nuitka/Nuitka/blob/develop/LICENSE.txt>`_

**Python** has the `Python Software Foundation (PSF) License
<https://github.com/python/cpython/blob/main/LICENSE>`_.

You are Responsible for Complying with your Project's Dependencies' Licenses
============================================================================

This tool compiles and copies your project's package dependencies (and
their dependencies) into the output executable, which will be considered
a combined or derivative work of those packages.

.. important::

   You are responsible for compliance with the licenses of your
   project's package dependencies. Please consult with an attorney about
   your individual/project's compliance needs and strategy.

How to Comply With Dependency Package Licenses
==============================================

There are some license checker tools that you might consider integrating
with your project. Generally speaking, they enable you to specify which
licenses (or types) are approved or disapproved and alert you whenever
your project has a package dependency that is not approved.

Here is a list of license checker tools:

-  `python-license-check
   <https://github.com/dhatim/python-license-check>`_ - can be run as a
   GitHub pre-commit hook.

-  `dependencies-license-compliance-checker
   <https://github.com/marketplace/actions/dependencies-license-compliance-checker>`_
   - a github action that you can run before your executable build.


================================================
FILE: action.yml
================================================
# yamllint disable rule:line-length
# yamllint disable rule:comments
# too many spelling things, spell-checker: disable
---
name: Build executables or extension modules from Python projects

branding:
  icon: "package"
  color: "blue"

description: "Build a modules or standalone executable from python code using Nuitka on Mac/Linux/Windows. Very wide range of compatibility."

inputs:
  working-directory:
    default: "."
    description: "Directory to run nuitka in if not top level"

  nuitka-version:
    default: "main"
    description: "Version of nuitka to use, branches, tags work"

  ### Only Required Input ###
  script-name:
    required: true
    description: "Path to python script that is to be built."

  # Enable Nuitka Commercial features of Nuitka using a PAT (personal access token)
  access-token:
    description: "Github personal access token of an account authorized to access the Nuitka-commercial repo"

  ### Nuitka Modes ###
  mode:
    description: |
      Mode in which to compile. "accelerated" runs in your Python
      installation and depends on it. "standalone" creates a folder
      with an executable contained to run it. "onefile" creates a
      single self extracting executable to deploy. "app" is "onefile"
      except on macOS where it creates an app bundle. "app-dist" is
      "standalone" except on macOS where it creates an app bundle.
      "module" makes an extension module from a single module and
      "package" compiles a whole package into an extension module.
      "dll" is currently under development and not for users yet.
      Default is 'accelerated'.
    default: app
  python-flag:
    description: |
      Python flags to use. Default is what you are using to run Nuitka, this
      enforces a specific mode. These are options that also exist to standard
      Python executable. Currently supported: "-S" (alias "no_site"),
      "static_hashes" (do not use hash randomization), "no_warnings" (do not
      give Python run time warnings), "-O" (alias "no_asserts"), "no_docstrings"
      (do not use doc strings), "-u" (alias "unbuffered"), "isolated" (do not
      load outside code), "-P" (alias "safe_path", do not used current directory
      in module search) and "-m" (package mode, compile as "package.__main__").
      Default empty.
  python-debug:
    description: |
      Use debug version or not. Default uses what you are using to run Nuitka, most
      likely a non-debug version. Only for debugging and testing purposes.
  project:
    description: |
      Compile the project in the current directory by extracting configuration
      from it. Default is not to use it.

  ### Nuitka Plugins to enable. ###
  enable-plugins:
    description: |
      Enabled plugins. Must be plug-in names. Use '--plugin-list' to query the
      full list and exit. Default empty.
  disable-plugins:
    description: |
      Disabled plugins. Must be plug-in names. Use '--plugin-list' to query the
      full list and exit. Most standard plugins are not a good idea to disable.
      Default empty.
  user-plugin:
    description: |
      The file name of user plugin. Can be given multiple times. Default empty.
  plugin-no-detection:
    description: |
      Plugins can detect if they might be used, and the you can disable the warning
      via "--disable-plugin=plugin-that-warned", or you can use this option to disable
      the mechanism entirely, which also speeds up compilation slightly of course as
      this detection code is run in vain once you are certain of which plugins to
      use. Defaults to off.
  module-parameter:
    description: |
      Provide a module parameter. You are asked by some packages
      to provide extra decisions. Format is currently
      --module-parameter=module.name-option-name=value
      Default empty.

  ### Nuitka Tracing/Reporting features
  report:
    description: |
      Report module, data files, compilation, plugin, etc. details in an XML output file. This
      is also super useful for issue reporting. These reports can e.g. be used to re-create
      the environment easily using it with '--create-environment-from-report', but contain a
      lot of information. Default is off.
  report-diffable:
    description: |
      Report data in diffable form, i.e. no timing or memory usage values that vary from run
      to run. Default is off.
  report-user-provided:
    description: |
      Report data from you. This can be given multiple times and be
      anything in 'key=value' form, where key should be an identifier, e.g. use
      '--report-user-provided=pipenv-lock-hash=64a5e4' to track some input values.
      Default is empty.
  report-template:
    description: |
      Report via template. Provide template and output filename 'template.rst.j2:output.rst'. For
      built-in templates, check the User Manual for what these are. Can be given multiple times.
      Default is empty.
  quiet:
    description: |
      Disable all information outputs, but show warnings.
      Defaults to off.
  show-scons:
    description: |
      Run the C building backend Scons with verbose information, showing the executed commands,
      detected compilers. Defaults to off.
  show-memory:
    description: |
      Provide memory information and statistics.
      Defaults to off.

  ### Control the inclusion of data files in result. ###
  include-package-data:
    description: |
      Include data files for the given package name. DLLs and extension modules
      are not data files and never included like this. Can use patterns the
      filenames as indicated below. Data files of packages are not included
      by default, but package configuration can do it.
      This will only include non-DLL, non-extension modules, i.e. actual data
      files. After a ":" optionally a filename pattern can be given as
      well, selecting only matching files. Examples:
      "--include-package-data=package_name" (all files)
      "--include-package-data=package_name:*.txt" (only certain type)
      "--include-package-data=package_name:some_filename.dat (concrete file)
      Default empty.
  include-data-files:
    description: |
      Include data files by filenames in the distribution. There are many
      allowed forms. With '--include-data-files=/path/to/file/*.txt=folder_name/some.txt' it
      will copy a single file and complain if it's multiple. With
      '--include-data-files=/path/to/files/*.txt=folder_name/' it will put
      all matching files into that folder. For recursive copy there is a
      form with 3 values that '--include-data-files=/path/to/scan=folder_name/=**/*.txt'
      that will preserve directory structure. Default empty.
  include-data-dir:
    description: |
      Include data files from complete directory in the distribution. This is
      recursive. Check '--include-data-files' with patterns if you want non-recursive
      inclusion. An example would be '--include-data-dir=/path/some_dir=data/some_dir'
      for plain copy, of the whole directory. All non-code files are copied, if you
      want to use '--noinclude-data-files' option to remove them. Default empty.
  noinclude-data-files:
    description: |
      Do not include data files matching the filename pattern given. This is against
      the target filename, not source paths. So to ignore a file pattern from package
      data for 'package_name' should be matched as 'package_name/*.txt'. Or for the
      whole directory simply use 'package_name'. Default empty.
  include-data-files-external:
    description: |
      Include the specified data file patterns outside of the onefile binary,
      rather than on the inside. First files have to be specified as included
      with other `--include-*data*` options, and then this refers to target
      paths inside the distribution that are then put external to it.
      Default empty.
  include-raw-dir:
    description: |
      Include raw directories completely in the distribution. This is
      recursive. Check '--include-data-dir' to use the sane option.
      Default empty.

  ### Control the inclusion of modules and packages in result. ###
  include-package:
    description: 'Include a whole package. Give as a Python namespace, e.g. "some_package.sub_package" and Nuitka will then find it and include it and all the modules found below that disk location in the binary or extension module it creates, and make it available for import by the code. To avoid unwanted sub packages, e.g. tests you can e.g. do this "--nofollow-import-to=*.tests". Default empty.'
  include-module:
    description: 'Include a single module. Give as a Python namespace, e.g. "some_package.some_module" and Nuitka will then find it and include it in the binary or extension module it creates, and make it available for import by the code. Default empty.'
  include-plugin-directory:
    description: "Include the content of that directory, no matter if it is used by the given main program in a visible form. Overrides all other inclusion options. Can be given multiple times. Default empty."
  include-plugin-files:
    description: "Include into files matching the PATTERN. Overrides all other follow options. Can be given multiple times. Default empty."
  prefer-source-code:
    description: "For already compiled extension modules, where there is both a source file and an extension module, normally the extension module is used, but it should be better to compile the module from available source code for best performance. If not desired, there is --no- prefer-source-code to disable warnings about it. Default off."
  nofollow-import-to:
    description: "Do not follow to that module name even if used, or if a package name, to the whole package in any case, overrides all other options. Can be given multiple times. Default empty."
  user-package-configuration-file:
    description: "User provided YAML file with package configuration. You can include DLLs, remove bloat, add hidden dependencies. Check User Manual for a complete description of the format to use. Can be given multiple times. Defaults to empty."

  ### Environment control ###
  force-runtime-environment-variable:
    description: |
      Force an environment variables to a given value. Default empty.

  ### Onefile behavior details ###
  onefile-tempdir-spec:
    description: "Use this as a folder to unpack onefile. Defaults to '%TEMP%\\onefile_%PID%_%TIME%', but e.g. '%CACHE_DIR%/%COMPANY%/%PRODUCT%/%VERSION%' would be cached and good too."
  onefile-child-grace-time:
    description: "When stopping the child, e.g. due to CTRL-C or shutdown, how much time to allow before killing it the hard way. Unit is ms. Default 5000."
  onefile-no-compression:
    description: "When creating the onefile, disable compression of the payload. Default is false."

  warn-implicit-exceptions:
    description: |
      Enable warnings for implicit exceptions detected at compile time.
  warn-unusual-code:
    description: |
      Enable warnings for unusual code detected at compile time.
  assume-yes-for-downloads:
    description: |
      Allow Nuitka to download external code if necessary, e.g. dependency
      walker, ccache, and even gcc on Windows. To disable, redirect input
      from nul device, e.g. "</dev/null" or "<NUL:". Default is to prompt.
    default: true
  nowarn-mnemonic:
    description: |
      Disable warning for a given mnemonic. These are given to make sure you are aware of
      certain topics, and typically point to the Nuitka website. The mnemonic is the part
      of the URL at the end, without the HTML suffix. Can be given multiple times and
      accepts shell pattern. Default empty.

  ### Deployment modes ###
  deployment:
    description: |
      Disable code aimed at making finding compatibility issues easier. This
      will e.g. prevent execution with "-c" argument, which is often used by
      code that attempts run a module, and causes a program to start itself
      over and over potentially. Disable once you deploy to end users, for
      finding typical issues, this is very helpful during development. Default
      off.
  no-deployment-flag:
    description: |
      Keep deployment mode, but disable selectively parts of it. Errors from
      deployment mode will output these identifiers. Default empty.

  ### Output choices ##
  output-dir:
    description: "Directory for output builds"
    default: build
  output-file:
    description: "Specify how the executable should be named. For extension modules there is no choice, also not for standalone mode and using it will be an error. This may include path information that needs to exist though. Defaults to '<program_name>' on this platform. .exe)"

  ### Console handling ###
  disable-console:
    description: "Obsolete as of Nuitka 2.3: When compiling for Windows or macOS, disable the console window and create a GUI application. Defaults to false."
  enable-console:
    description: "Obsolete as of Nuitka 2.3: When compiling for Windows or macOS, enable the console window and create a GUI application. Defaults to false and tells Nuitka your choice is intentional."

  ### Version information ###
  company-name:
    description: |
      Name of the company to use in version information. Defaults to unused.
  product-name:
    description: |
      Name of the product to use in version information. Defaults to base filename of the binary.
  file-version:
    description: |
      File version to use in version information. Must be a sequence of up to 4
      numbers, e.g. 1.0 or 1.0.0.0, no more digits are allowed, no strings are
      allowed. Defaults to unused.
  product-version:
    description: |
      Product version to use in version information. Same rules as for file version.
      Defaults to unused.
  file-description:
    description: |
      Description of the file used in version information. Windows only at this time. Defaults to binary filename.
  copyright:
    description: |
      Copyright used in version information. Windows/macOS only at this time. Defaults to not present.
  trademarks:
    description: |
      Trademark used in version information. Windows/macOS only at this time. Defaults to not present.

  ### General OS controls ###
  force-stdout-spec:
    description: |
      Force standard output of the program to go to this location. Useful for programs with
      disabled console and programs using the Windows Services Plugin of Nuitka commercial.
      Defaults to not active, use e.g. '{PROGRAM_BASE}.out.txt', i.e. file near your program,
      check User Manual for full list of available values.
  force-stderr-spec:
    description: |
      Force standard error of the program to go to this location. Useful for programs with
      disabled console and programs using the Windows Services Plugin of Nuitka commercial.
      Defaults to not active, use e.g. '{PROGRAM_BASE}.err.txt', i.e. file near your program,
      check User Manual for full list of available values.

  ### Windows specific controls ###
  windows-console-mode:
    description: |
      Select console mode to use. Default mode is 'force' and creates a
      console window unless the program was started from one. With 'disable'
      it doesn't create or use a console at all. With 'attach' an existing
      console will be used for outputs. With 'hide' a newly spawned console
      will be hidden and an already existing console will behave like
      'force'. Default is 'force'.
  windows-icon-from-ico:
    description: |
      Add executable icon. Can be given multiple times for different resolutions
      or files with multiple icons inside. In the later case, you may also suffix
      with #<n> where n is an integer index starting from 1, specifying a specific
      icon to be included, and all others to be ignored.
  windows-icon-from-exe:
    description: |
      Copy executable icons from this existing executable (Windows only).
  onefile-windows-splash-screen-image:
    description: |
      When compiling for Windows and onefile, show this while loading the application. Defaults to off.
  windows-uac-admin:
    description: |
      Request Windows User Control, to grant admin rights on execution. (Windows only). Defaults to off.
  windows-uac-uiaccess:
    description: |
      Request Windows User Control, to enforce running from a few folders only, remote
      desktop access. (Windows only). Defaults to off.

  ### macOS specific controls: ###
  macos-app-console-mode:
    description: |
      Select console mode to use. Default mode is 'disable' and creates no
      console window. With 'force' it will create a console window when
      launched from Finder. Default is 'disable'.
  macos-target-arch:
    description: |
      What architectures is this to supposed to run on. Default and limit
      is what the running Python allows for. Default is "native" which is
      the architecture the Python is run with.
  macos-app-icon:
    description: |
      Add icon for the application bundle to use. Can be given only one time. Defaults to Python icon if available.
  macos-app-create-dmg:
    description: |
      When compiling for macOS, create a DMG file for the application bundle.
      Defaults to off.
  macos-signed-app-name:
    description: |
      Name of the application to use for macOS signing. Follow "com.YourCompany.AppName"
      naming results for best results, as these have to be globally unique, and will
      potentially grant protected API accesses.
  macos-app-name:
    description: |
      Name of the product to use in macOS bundle information. Defaults to base
      filename of the binary.
  macos-app-mode:
    description: |
      Mode of application for the application bundle. When launching a Window, and appearing
      in the dock is desired, default value "gui" is a good fit. Without a Window ever, the
      application is a "background" application. For UI elements that get to display later,
      "ui-element" is in-between. The application will not appear in the dock, but get full
      access to desktop when it does open a Window later.
  macos-prohibit-multiple-instances:
    description: |
      For application bundles, set the flag "LSMultipleInstancesProhibited" to prevent
      launching multiple instances of the application. Default is off.
  macos-sign-identity:
    description: |
      When signing on macOS, by default an ad-hoc identify will be used, but with this
      option your get to specify another identity to use. The signing of code is now
      mandatory on macOS and cannot be disabled. Use "auto" to detect your only identity
      installed. Default "ad-hoc" if not given.
  macos-sign-notarization:
    description: |
      When signing for notarization, using a proper TeamID identity from Apple, use
      the required runtime signing option, such that it can be accepted.
  macos-app-version:
    description: |
      Product version to use in macOS bundle information. Defaults to "1.0" if
      not given.
  macos-app-protected-resource:
    description: |
      Request an entitlement for access to a macOS protected resources, e.g.
      "NSMicrophoneUsageDescription:Microphone access for recording audio."
      requests access to the microphone and provides an informative text for
      the user, why that is needed. Before the colon, is an OS identifier for
      an access right, then the informative text. Legal values can be found on
      https://developer.apple.com/documentation/bundleresources/information_property_list/protected_resources
      and the option can be specified multiple times. Default empty.
  macos-sign-keyring-filename:
    description: |
      Path to the certificate file to be used for macOS code signing.
      This is used in conjunction with '--macos-sign-identity'. Default empty.
  macos-sign-keyring-password:
    description: |
      Password for the certificate file provided via
      '--macos-sign-keyring-filename'. Default empty.

  ### Linux specific controls: ###
  linux-icon:
    description: |
      Add executable icon for onefile binary to use. Can be given only one time. Defaults to Python icon if available.


  ### Backend C compiler choices. ###
  clang:
    description: |
      Enforce the use of clang. On Windows this requires a working Visual
      Studio version to piggy back on. Defaults to off.
  mingw64:
    description: |
      Enforce the use of MinGW64 on Windows. Defaults to off unless MSYS2 with MinGW Python is used.
  zig:
    description: |
      Enforce usage of Zig on for C compilation. Defaults to off.
  msvc:
    description: |
      Enforce the use of specific MSVC version on Windows. Allowed values
      are e.g. "14.3" (MSVC 2022) and other MSVC version numbers, specify
      "list" for a list of installed compilers, or use "latest".

      Defaults to latest MSVC being used if installed, otherwise MinGW64
      is used.
  jobs:
    description: |
      Specify the allowed number of parallel C compiler jobs. Negative values
      are system CPU minus the given value. Defaults to the full system CPU
      count unless low memory mode is activated, then it defaults to 1.
  reproducible:
    description: |
      Enable reproducible builds. Allowed values are "yes", "no", and "auto"
      (where it's "no" on Windows and "yes" otherwise). Defaults to "auto".
  lto:
    description: |
      Use link time optimizations (MSVC, gcc, clang). Allowed values are
      "yes", "no", and "auto" (when it's known to work). Defaults to
      "auto".
  static-libpython:
    description: |
      Use static link library of Python. Allowed values are "yes", "no",
      and "auto" (when it's known to work). Defaults to "auto".
  cf-protection:
    description: |
      This option is gcc specific. For the gcc compiler, select the
      "cf-protection" mode. Default "auto" is to use the gcc default
      value, but you can override it, e.g. to disable it with "none"
      value. Refer to gcc documentation for "-fcf-protection" for the
      details.

  ### Debug features. ###
  debug:
    description: |
      Executing all self checks possible to find errors in Nuitka, do not use for
      production. Defaults to off.
  debug-self-forking:
    description: |
      For fork bombs, debug what Nuitka does when it encounters a relaunch of itself.
      Defaults to off.
  no-debug-immortal-assumptions:
    description: |
      Disable check normally done with "--debug". With Python3.12+ do not check known
      immortal object assumptions. Some C libraries corrupt them. Defaults to check
      being made if "--debug" is on.
  no-debug-c-warnings:
    description: |
      Disable check normally done with "--debug". The C compilation may produce
      warnings, which it often does for some packages without these being issues,
      esp. for unused values.
  unstripped:
    description: |
      Keep debug info in the resulting object file for better debugger interaction.
      Defaults to off.
  trace-execution:
    description: |
      Traced execution output, output the line of code before executing it.
      Defaults to off.
  xml:
    description: |
      Write the internal program structure, result of optimization in XML form to given filename.
  experimental:
    description: |
      Use features declared as 'experimental'. May have no effect if no experimental
      features are present in the code. Uses secret tags (check source) per
      experimented feature.
  low-memory:
    description: |
      Attempt to use less memory, by forking less C compilation jobs and using
      options that use less memory. For use on embedded machines. Use this in
      case of out of memory problems. Defaults to off.

  ### Plugin options of 'automatic-updates' (categories: commercial, feature) ###
  auto-update-url-spec:
    description: |
      URL to check for automatic updates. Default empty, i.e. not updates.
  auto-update-debug:
    description: |
      Debug automatic updates at runtime printing messages. Default False.
  auto-update-toml-file:
    description: |
      Path to generate a TOML update config for the compiled binary. Default empty, i.e. do not generate.

  ### Plugin options of 'windows-service' (categories: commercial, feature) ###
  windows-service-name:
    description: |
      The Windows service name.
  windows-service-grace-time:
    description: |
      For shutdown, wait this extra time before killing. Unit is ms, and default is 2000,
      i.e. it waits 2 seconds to allow cleanup. Increase if you need more time, decrease
      if you want faster service shutdown.
  windows-service-start-mode:
    description: |
      Pick the service start mode, value "auto" starts automatically at
      reboot without login, "demand" (default) must be started manually,
      and "disabled" cannot be started, requires further action to
      change it.
  windows-service-cli:
    description: |
      Should the program allow to be ran from the command line. By default
      it does not and only outputs a message it is disallowed.

  ### Plugin options of 'esigner' (categories: commercial, integration, signing) ###
  esigner-sign-deep:
    description: |
      Also sign included DLLs (shared libraries) and extension modules in the distribution.
      Use with care, as this may break some things.
  esigner-disable-signing-cache:
    description: |
      Disable usage of the hashing based signing cache. This will make deep signing
      much slower.
  esigner-tool-path:
    description: |
      Path to the 'CodeSignTool' executable/batch file provided by SSL.com.
  esigner-username:
    description: |
      SSL.com username.
  esigner-password:
    description: |
      SSL.com password.
  esigner-credential-id:
    description: |
      Credential ID for the signing certificate.
  esigner-totp-secret:
    description: |
      TOTP secret for the signing account (static secret).

  ### Plugin options of 'signtool' (categories: commercial, integration, signing) ###
  windows-sign-deep:
    description: |
      Also sign included DLLs (shared libraries) and extension modules in the distribution.
      Use with care, as this may break some things.
  windows-disable-signing-cache:
    description: |
      Disable usage of the hashing based signing cache. This will make deep signing
      much slower.
  windows-signing-tool-path:
    description: |
      The 'signtool' executable. You may make this a wrapper script should you want very
      specific options, by default `signtool` from PATH or used MSVC used is used.
  windows-certificate-name:
    description: |
      Name of the certificate to use. This will be used to sign the binary.
  windows-certificate-sha1:
    description: |
      Checksum of the certificate to use. This will be used to sign the binary.
  windows-certificate-filename:
    description: |
      Filename of the certificate, typically a ".pfx" file. This will be used to sign
      the binary.
  windows-certificate-password:
    description: |
      Password of the certificate filename used. Defaults to empty, must be
      provided to successfully sign if certificate the file has one.
  windows-signed-content-comment:
    description: |
      Comment to be used for the signed comments. Optional, defaults to not given.

  ### Plugin options of 'anti-debugger' (categories: commercial, protection) ###
  anti-debugger-debugging:
    description: |
      Enables debug outputs for the debugger plugin, so that it e.g. says
      why it rejects something.

  ### Plugin options of 'data-hiding' (categories: commercial, protection) ###
  data-hiding-salt-value:
    description: |
      Salt value to make encryption result unique.

  ### Plugin options of 'datafile-inclusion-ng' (categories: commercial, protection) ###
  embed-data-files-compile-time-pattern:
    description: |
      Pattern of data files to embed for use during compile time. These should
      match target filenames.
  embed-data-files-run-time-pattern:
    description: |
      Pattern of data files to embed for use during run time. These should
      match target filenames.
  embed-data-files-qt-resource-pattern:
    description: |
      Pattern of data files to embed for use with Qt at run time. These should
      match target filenames.
  embed-debug-qt-resources:
    description: |
      For debugging purposes, print out information for Qt resources not found.

  ### Plugin options of 'dll-embedding' (categories: commercial, protection) ###
  embed-dll-pattern:
    description: |
      Pattern of DLLs to embed (glob style). Matches against the destination path
      (e.g. package/ext.pyd or library.dll).

  ### Plugin options of 'traceback-encryption' (categories: commercial, protection) ###
  encryption-key:
    description: |
      The encryption key to use.
  encrypt-stdout:
    description: |
      Apply encryption to standard output.
  encrypt-stderr:
    description: |
      Apply encryption to standard error.
  encrypt-debug-init:
    description: |
      In case the encryption fails to install, do not abort, but run normally and trace error unencrypted.
  encrypt-crypto-package:
    description: |
      These are two very similar packages that can both do the encryption, and
      to avoid duplication in case one of your packages requires the other,
      you get to select which one to use by the plugin code. By default
      "pycryptodomex" is used and only legacy code uses that. However it
      will fallback to "pycryptodome" if that's the only one installed,
      and you can enforce Nuitka choice if both are for some reason.

  ### Plugin options of 'upx' (categories: integration) ###
  upx-binary:
    description: |
      The UPX binary to use or the directory it lives in, by default `upx` from PATH is used.
  upx-disable-cache:
    description: |
      Do not cache UPX compression result, by default DLLs are cached, exe files are not.

  ### Plugin options of 'dill-compat' (categories: package-support) ###
  include-pickle-support-module:
    description: |
      Include support for these modules to pickle nested compiled functions. You
      can use "all" which is the default, but esp. in module mode, just might
      want to limit yourself to not create unnecessary run-time usages. For
      standalone mode, you can leave it at the default, at it will detect
      the usage.

  ### Plugin options of 'pmw-freezer' (categories: package-support) ###
  include-pmw-blt:
    description: |
      Should 'Pmw.Blt' not be included, Default is to include it.
  include-pmw-color:
    description: |
      Should 'Pmw.Color' not be included, Default is to include it.

  ### Plugin options of 'tk-inter' (categories: package-support) ###
  tk-library-dir:
    description: |
      The Tk library dir. Nuitka is supposed to automatically detect it, but you can
      override it here. Default is automatic detection.
  tcl-library-dir:
    description: |
      The Tcl library dir. See comments for Tk library dir.

  ### Plugin options of 'pyside6' (same for 'pyside2', 'pyqt6', 'pyqt5' plugins) (categories: package-support, qt-binding) ###
  include-qt-plugins:
    description: |
      Which Qt plugins to include. These can be big with dependencies, so
      by default only the "sensible" ones are included, but you can also put
      "all" or list them individually. If you specify something that does
      not exist, a list of all available will be given.
  noinclude-qt-plugins:
    description: |
      Which Qt plugins to not include. This removes things, so you can
      ask to include "all" and selectively remove from there, or even
      from the default sensible list.
  noinclude-qt-translations:
    description: |
      Include Qt translations with QtWebEngine if used. These can be a lot
      of files that you may not want to be included.
  qt-debug-plugins:
    description: |
      Sets the "QT_DEBUG_PLUGINS" environment variable to "1" in the
      created standalone, so you can debug what plugin loading issues
      there might be.


  ### Action controls ###
  disable-cache:
    description: "Disables caching of compiled binaries. Defaults to false."

  caching-key:
    description: "An optional string to make the Nuitka build cache key more specific. This can be used for manual cache invalidation or to segment caches based on custom criteria. This key itself is not passed to Nuitka."
    required: false
    default: "caching"


runs:
  using: "composite"
  steps:
    - name: Setup Environment Variables
      if: ${{ !inputs.disable-cache }}
      shell: bash
      run: |
        echo "NUITKA_CACHE_DIR=${{ github.action_path }}/nuitka/cache" >> $GITHUB_ENV
        echo "PYTHON_VERSION=$(python --version | awk '{print $2}' | cut -d '.' -f 1,2)" >> $GITHUB_ENV
    - name: Install Dependencies
      shell: bash
      run: |
        pip install -r "${{ github.action_path }}/requirements.txt"

        # With commercial access token, use that repository.
        if [ "${{ inputs.access-token }}" != "" ]; then
          repo_url="git+https://${{ inputs.access-token }}@github.com/Nuitka/Nuitka-commercial.git"
        else
          repo_url="git+https://$@github.com/Nuitka/Nuitka.git"
        fi

        pip install "${repo_url}/@${{ inputs.nuitka-version }}#egg=nuitka"
    - name: Install ccache
      # TODO: Proper "in" test could make sense here.
      if: ${{ inputs.disable-cache != 'ccache' && runner.os == 'Linux' }}
      shell: bash
      run: |
        sudo apt-get install -y ccache
    - name: Cache Nuitka cache directory
      if: ${{ !inputs.disable-cache }}
      uses: actions/cache@v5
      with:
        path: ${{ env.NUITKA_CACHE_DIR }}
        key: nuitka-${{ inputs.caching-key }}-${{ runner.os }}-${{ runner.arch }}-python-${{ env.PYTHON_VERSION }}-nuitka-${{ github.sha }}
        restore-keys: |
          nuitka-${{ inputs.caching-key }}-${{ runner.os }}-${{ runner.arch }}-python-${{ env.PYTHON_VERSION }}-
          nuitka-${{ inputs.caching-key }}-${{ runner.os }}-${{ runner.arch }}-

    - name: Build with Nuitka
      shell: bash
      env:
        PYTHONUTF8: 1
      run: |
        set -e

        # Prepare the JSON string for Nuitka, filtering out action-specific keys using Python
        NUITKA_WORKFLOW_INPUTS=$(echo '${{ toJson(inputs) }}' | python -c "import sys, json; data = json.load(sys.stdin); [data.pop(k, None) for k in ['nuitka-version', 'working-directory', 'access-token', 'disable-cache', 'caching-key']]; json.dump(data, sys.stdout, ensure_ascii=False)")

        # Pass the filtered JSON to Nuitka via an environment variable
        export NUITKA_WORKFLOW_INPUTS
        python -m nuitka --github-workflow-options
      working-directory: ${{ inputs.working-directory }}


================================================
FILE: action.yml.j2
================================================
# yamllint disable rule:line-length
# yamllint disable rule:comments
# too many spelling things, spell-checker: disable
---
name: Build executables or extension modules from Python projects

branding:
  icon: "package"
  color: "blue"

description: "Build a modules or standalone executable from python code using Nuitka on Mac/Linux/Windows. Very wide range of compatibility."

inputs:
  working-directory:
    default: "."
    description: "Directory to run nuitka in if not top level"

  nuitka-version:
    default: "main"
    description: "Version of nuitka to use, branches, tags work"

  ### Only Required Input ###
  script-name:
    required: true
    description: "Path to python script that is to be built."

  # Enable Nuitka Commercial features of Nuitka using a PAT (personal access token)
  access-token:
    description: "Github personal access token of an account authorized to access the Nuitka-commercial repo"

  ### Nuitka Modes ###
{{ get_top_options() }}

  ### Nuitka Plugins to enable. ###
{{ get_group_options("Plugin control") }}

  ### Nuitka Tracing/Reporting features
{{ get_group_options("Tracing features") }}

  ### Control the inclusion of data files in result. ###
{{ get_group_options("Data files") }}

  ### Control the inclusion of modules and packages in result. ###
  include-package:
    description: 'Include a whole package. Give as a Python namespace, e.g. "some_package.sub_package" and Nuitka will then find it and include it and all the modules found below that disk location in the binary or extension module it creates, and make it available for import by the code. To avoid unwanted sub packages, e.g. tests you can e.g. do this "--nofollow-import-to=*.tests". Default empty.'
  include-module:
    description: 'Include a single module. Give as a Python namespace, e.g. "some_package.some_module" and Nuitka will then find it and include it in the binary or extension module it creates, and make it available for import by the code. Default empty.'
  include-plugin-directory:
    description: "Include the content of that directory, no matter if it is used by the given main program in a visible form. Overrides all other inclusion options. Can be given multiple times. Default empty."
  include-plugin-files:
    description: "Include into files matching the PATTERN. Overrides all other follow options. Can be given multiple times. Default empty."
  prefer-source-code:
    description: "For already compiled extension modules, where there is both a source file and an extension module, normally the extension module is used, but it should be better to compile the module from available source code for best performance. If not desired, there is --no- prefer-source-code to disable warnings about it. Default off."
  nofollow-import-to:
    description: "Do not follow to that module name even if used, or if a package name, to the whole package in any case, overrides all other options. Can be given multiple times. Default empty."
  user-package-configuration-file:
    description: "User provided YAML file with package configuration. You can include DLLs, remove bloat, add hidden dependencies. Check User Manual for a complete description of the format to use. Can be given multiple times. Defaults to empty."

  ### Environment control ###
{{ get_group_options("Environment control") }}

  ### Onefile behavior details ###
  onefile-tempdir-spec:
    description: "Use this as a folder to unpack onefile. Defaults to '%TEMP%\\onefile_%PID%_%TIME%', but e.g. '%CACHE_DIR%/%COMPANY%/%PRODUCT%/%VERSION%' would be cached and good too."
  onefile-child-grace-time:
    description: "When stopping the child, e.g. due to CTRL-C or shutdown, how much time to allow before killing it the hard way. Unit is ms. Default 5000."
  onefile-no-compression:
    description: "When creating the onefile, disable compression of the payload. Default is false."

{{ get_group_options("Control the warnings to be given by Nuitka") }}

  ### Deployment modes ###
{{ get_group_options("Deployment control") }}

  ### Output choices ##
  output-dir:
    description: "Directory for output builds"
    default: build
  output-file:
    description: "Specify how the executable should be named. For extension modules there is no choice, also not for standalone mode and using it will be an error. This may include path information that needs to exist though. Defaults to '<program_name>' on this platform. .exe)"

  ### Console handling ###
  disable-console:
    description: "Obsolete as of Nuitka 2.3: When compiling for Windows or macOS, disable the console window and create a GUI application. Defaults to false."
  enable-console:
    description: "Obsolete as of Nuitka 2.3: When compiling for Windows or macOS, enable the console window and create a GUI application. Defaults to false and tells Nuitka your choice is intentional."

  ### Version information ###
{{ get_group_options("Binary Version Information") }}

  ### General OS controls ###
{{ get_group_options("General OS controls") }}

  ### Windows specific controls ###
{{ get_group_options("Windows specific controls") }}

  ### macOS specific controls: ###
{{ get_group_options("macOS specific controls") }}

  ### Linux specific controls: ###
{{ get_group_options("Linux specific controls") }}


  ### Backend C compiler choices. ###
{{ get_group_options("Backend C compiler choice") }}

  ### Debug features. ###
{{ get_group_options("Debug features") }}

{{ get_plugin_options() }}

  ### Action controls ###
  disable-cache:
    description: "Disables caching of compiled binaries. Defaults to false."

  caching-key:
    description: "An optional string to make the Nuitka build cache key more specific. This can be used for manual cache invalidation or to segment caches based on custom criteria. This key itself is not passed to Nuitka."
    required: false
    default: "caching"

{% raw %}
runs:
  using: "composite"
  steps:
    - name: Setup Environment Variables
      if: ${{ !inputs.disable-cache }}
      shell: bash
      run: |
        echo "NUITKA_CACHE_DIR=${{ github.action_path }}/nuitka/cache" >> $GITHUB_ENV
        echo "PYTHON_VERSION=$(python --version | awk '{print $2}' | cut -d '.' -f 1,2)" >> $GITHUB_ENV
    - name: Install Dependencies
      shell: bash
      run: |
        pip install -r "${{ github.action_path }}/requirements.txt"

        # With commercial access token, use that repository.
        if [ "${{ inputs.access-token }}" != "" ]; then
          repo_url="git+https://${{ inputs.access-token }}@github.com/Nuitka/Nuitka-commercial.git"
        else
          repo_url="git+https://$@github.com/Nuitka/Nuitka.git"
        fi

        pip install "${repo_url}/@${{ inputs.nuitka-version }}#egg=nuitka"
    - name: Install ccache
      # TODO: Proper "in" test could make sense here.
      if: ${{ inputs.disable-cache != 'ccache' && runner.os == 'Linux' }}
      shell: bash
      run: |
        sudo apt-get install -y ccache
    - name: Cache Nuitka cache directory
      if: ${{ !inputs.disable-cache }}
      uses: actions/cache@v5
      with:
        path: ${{ env.NUITKA_CACHE_DIR }}
        key: nuitka-${{ inputs.caching-key }}-${{ runner.os }}-${{ runner.arch }}-python-${{ env.PYTHON_VERSION }}-nuitka-${{ github.sha }}
        restore-keys: |
          nuitka-${{ inputs.caching-key }}-${{ runner.os }}-${{ runner.arch }}-python-${{ env.PYTHON_VERSION }}-
          nuitka-${{ inputs.caching-key }}-${{ runner.os }}-${{ runner.arch }}-

    - name: Build with Nuitka
      shell: bash
      env:
        PYTHONUTF8: 1
      run: |
        set -e

        # Prepare the JSON string for Nuitka, filtering out action-specific keys using Python
        NUITKA_WORKFLOW_INPUTS=$(echo '${{ toJson(inputs) }}' | python -c "import sys, json; data = json.load(sys.stdin); [data.pop(k, None) for k in ['nuitka-version', 'working-directory', 'access-token', 'disable-cache', 'caching-key']]; json.dump(data, sys.stdout, ensure_ascii=False)")

        # Pass the filtered JSON to Nuitka via an environment variable
        export NUITKA_WORKFLOW_INPUTS
        python -m nuitka --github-workflow-options
      working-directory: ${{ inputs.working-directory }}
{% endraw %}


================================================
FILE: requirements-dev.in
================================================
-c requirements.txt
pip-tools


================================================
FILE: requirements-dev.txt
================================================
#
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
#
#    pip-compile requirements-dev.in
#
build==0.10.0
    # via pip-tools
click==8.1.3
    # via pip-tools
colorama==0.4.6
    # via
    #   build
    #   click
packaging==23.0
    # via build
pep517==0.13.0
    # via build
pip-tools==6.12.3
    # via -r requirements-dev.in
pyparsing==3.0.9
    # via packaging
tomli==2.0.1
    # via
    #   build
    #   pep517
wheel==0.38.4
    # via pip-tools

# The following packages are considered to be unsafe in a requirements file:
# pip
# setuptools


================================================
FILE: requirements.in
================================================
ordered-set # nuitka compile performance helper
zstandard # for nuitka's onefile compression
wheel


================================================
FILE: requirements.txt
================================================
#
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
#
#    pip-compile
#
ordered-set==4.1.0
    # via -r requirements.in
wheel==0.38.4
    # via -r requirements.in
zstandard==0.20.0
    # via -r requirements.in


================================================
FILE: update-from-nuitka-options.py
================================================
#!/usr/bin/env python3

import os
import sys
import textwrap

from nuitka.containers.OrderedSets import OrderedSet
from nuitka.options.CommandLineOptionsTools import OurOptionParser
from nuitka.utils.FileOperations import changeTextFileContents
from nuitka.utils.Jinja2 import getTemplate

template = getTemplate(
    package_name=None,
    template_subdir=os.path.dirname(__file__) or ".",
    template_name="action.yml.j2",
    extensions=("jinja2.ext.do",),
)


parser = None


def _getParser():
    global parser

    if parser is None:
        sys.argv.append("--help-all")
        from nuitka.options.OptionParsing import parser
        from nuitka.plugins.Plugins import addStandardPluginCommandLineOptions

        addStandardPluginCommandLineOptions(parser=parser, plugin_help_mode=True)
        del sys.argv[-1]

    return parser


def getOptions():
    for option in _getParser().iterateOptions():
        # Help option
        if "--help" in option._long_opts:
            continue

        # Main option is currently not done like this
        if "--main" in option._long_opts:
            continue

        if not hasattr(option, "require_compiling"):
            continue

        # Non-compiling options do not belong into Nuitka-Action
        if not option.require_compiling or not option.github_action:
            continue

        from nuitka.options.OptionParsing import SUPPRESS_HELP

        if option.help is SUPPRESS_HELP:
            continue

        yield option


def getTopOptions():
    for option in getOptions():
        container = getattr(option, "container", None)

        if isinstance(container, OurOptionParser):
            yield option


def getGroupOptions(group_name):
    for option in getOptions():
        container = getattr(option, "container", None)

        if isinstance(container, OurOptionParser):
            continue

        if container.title == group_name:
            yield option


def formatOption(option):
    help_str = option.help
    if help_str.startswith("[REQUIRED]"):
        help_str = help_str[11:]

    assert not help_str[-1].isspace(), option

    result = (
        option._long_opts[0].lstrip("-")
        + ":\n  description: |\n"
        + textwrap.indent(help_str, prefix="    ")
    )

    if option.github_action_default is not None:
        if type(option.github_action_default) is bool:
            option.github_action_default = (
                "true" if option.github_action_default else "false"
            )

        assert type(option.github_action_default) is str, option
        result += "\n  default: " + option.github_action_default

    return result


def get_top_options():
    result = []

    for option in getTopOptions():
        result.append(formatOption(option))

    return textwrap.indent("\n".join(result), "  ")


def get_group_options(group_caption):
    result = []

    for option in getGroupOptions(group_caption):
        result.append(formatOption(option))

    return textwrap.indent("\n".join(result), "  ")


def get_plugin_options():
    plugin_groups = OrderedSet()

    for option in getOptions():
        container = getattr(option, "container", None)
        if isinstance(container, OurOptionParser):
            continue

        # TODO: No support for Nuitka VM yet.
        if "pelock" in container.title or "themida" in container.title:
            continue

        if container.title.startswith("Plugin options of "):
            plugin_groups.add(container)

    result = []

    for option_group in plugin_groups:
        result.append("### %s ###" % option_group.title)

        for option in option_group.option_list:
            if not option.github_action:
                continue

            result.append(formatOption(option))

        result.append("")

    return textwrap.indent("\n".join(result), "  ")


action_yaml = template.render(
    get_top_options=get_top_options,
    get_group_options=get_group_options,
    get_plugin_options=get_plugin_options,
)

if changeTextFileContents("action.yml", action_yaml):
    print("Updated.")
else:
    print("Already up to date.")
Download .txt
gitextract_oqopjvl7/

├── .gitignore
├── .vscode/
│   └── settings.json
├── LICENSE
├── README.rst
├── action.yml
├── action.yml.j2
├── requirements-dev.in
├── requirements-dev.txt
├── requirements.in
├── requirements.txt
└── update-from-nuitka-options.py
Download .txt
SYMBOL INDEX (8 symbols across 1 files)

FILE: update-from-nuitka-options.py
  function _getParser (line 23) | def _getParser():
  function getOptions (line 37) | def getOptions():
  function getTopOptions (line 62) | def getTopOptions():
  function getGroupOptions (line 70) | def getGroupOptions(group_name):
  function formatOption (line 81) | def formatOption(option):
  function get_top_options (line 106) | def get_top_options():
  function get_group_options (line 115) | def get_group_options(group_caption):
  function get_plugin_options (line 124) | def get_plugin_options():
Condensed preview — 11 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (61K chars).
[
  {
    "path": ".gitignore",
    "chars": 14,
    "preview": "\nvenv\n/.idea/\n"
  },
  {
    "path": ".vscode/settings.json",
    "chars": 88,
    "preview": "{\n    \"cSpell.words\": [\n        \"pyside\",\n        \"tkinter\",\n        \"zstandard\"\n    ]\n}"
  },
  {
    "path": "LICENSE",
    "chars": 1077,
    "preview": "MIT License\n\nCopyright (c) 2024 Jim Kring, Kay Hayen\n\nPermission is hereby granted, free of charge, to any person obtain"
  },
  {
    "path": "README.rst",
    "chars": 8957,
    "preview": "###############\n Nuitka-Action\n###############\n\nThis GitHub Action builds **Windows**, **macOS**, and **Linux** programs"
  },
  {
    "path": "action.yml",
    "chars": 34868,
    "preview": "# yamllint disable rule:line-length\n# yamllint disable rule:comments\n# too many spelling things, spell-checker: disable\n"
  },
  {
    "path": "action.yml.j2",
    "chars": 8227,
    "preview": "# yamllint disable rule:line-length\n# yamllint disable rule:comments\n# too many spelling things, spell-checker: disable\n"
  },
  {
    "path": "requirements-dev.in",
    "chars": 30,
    "preview": "-c requirements.txt\npip-tools\n"
  },
  {
    "path": "requirements-dev.txt",
    "chars": 577,
    "preview": "#\n# This file is autogenerated by pip-compile with python 3.10\n# To update, run:\n#\n#    pip-compile requirements-dev.in\n"
  },
  {
    "path": "requirements.in",
    "chars": 99,
    "preview": "ordered-set # nuitka compile performance helper\nzstandard # for nuitka's onefile compression\nwheel\n"
  },
  {
    "path": "requirements.txt",
    "chars": 240,
    "preview": "#\n# This file is autogenerated by pip-compile with python 3.10\n# To update, run:\n#\n#    pip-compile\n#\nordered-set==4.1.0"
  },
  {
    "path": "update-from-nuitka-options.py",
    "chars": 4122,
    "preview": "#!/usr/bin/env python3\n\nimport os\nimport sys\nimport textwrap\n\nfrom nuitka.containers.OrderedSets import OrderedSet\nfrom "
  }
]

About this extraction

This page contains the full source code of the Nuitka/Nuitka-Action GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 11 files (56.9 KB), approximately 13.5k tokens, and a symbol index with 8 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!