I am packaging an app with Kivy and pyinstaller.
Running the command
python -m PyInstaller --clean --win-private-assemblies -F GroundControl.spec
creates a working executable with the path
\Git\GroundControl\dist\GroundControl\GroundControl.exe
but that folder also contains many other .pyd and .dll files which are needed for the .exe file to run.
Is there a way to truly create just one .exe file to distribute or possibly at least reduce the number of files produced?
Thank you for any advice.