I have written an python application UI using Pyside2 on Windows 10. I also use packages like numpy,scipy. I actually need to deploy the application. i tryed pyinstaller -onefile, my app is around 100 Mo but is too slow to be acceptable. the -one dir option is less slow but always too much and bulky (250 Mo). So i find out Cython and succesfully compiled the main.py file into an exe using gcc on Windows 10 (it has needed mingw64 installation). The execution and utilization speed is good but the library to embed with an installer like inno setup is too big (around 550 Mo).
My question is : Is there any way to reduce the size of python library by at least 70 % on Windows 10?