I am trying to make a folder with a fully functional mobile windows distribution of a python app without using PyPI (not necessary), downloading dependencies with a setup.py (potentially for offline use) or packing the entire thing to an .exe (unnecessarily huge single file).
I want to use pyarmor to encrypt a script part dealing with encryption for source code protection.
I know that I can use pyarmor in conjunction with pyinstaller to create a single exe as seen in PyArmor - Pack to one single executable However simple this solution, performance suffers greatly from this.
I am also aware that you can use PyPI to package the script (https://packaging.python.org/). This does not seem to be what I want.
I don't necessarily need an explaination - but please nudge me in the right direction