I'm doing a program in python and I want to package it in an .exe. For this I use the well-known "pyinstaller". It is not the first time that I use it.
The problem is that now I want to package the project I'm working on and the final file weighs about 38 MB. It would be normal in a game or a more or less large application but mine has a few windows and already.
I suspect that the pyinstaller packages ALL the libraries that I include, because otherwise I can not understand why it weighs so much.
I would like to know if there is another way to package that is not pyinstaller or there is some way to configure it to be lighter.
I do not know much about it, but I know that my program should not weigh so much because the same program done in autoit would weigh a few kilobytes. Thank you in advance for any help you can give me. I'll be here all the time.