I know this question has been asked a lot, but I have a python project I'm working on that contains 150 kB of pure code. I use pyinstaller to package it, as I need a .exe file at the end.
But PyInstaller creates a 60 MB file, even with a trimmed down venv and single file enabled. I've heard of people trimming down files with numpy and pandas to <25 MB. However, I don't know if this is possible in my case as I use:
-tkinter
-numpy
-pandas
-scipy
-matplotlib
All of which are fairly large. Is there any hope to shrink this down?