I'm using cx_Freeze to compile python programs into executables and it works just fine, but the problem is that is doesn't compile the .py scripts into one exe, it converts them into a .exe file AND a whole bunch of .dll files including python32.dll. So does anyone know how I can convert all of these files into one .exe file? And, I would rather is be a plain exe file and not just a file that copies the .dll files into %appdata% and then reads them or something.
EDIT: Also, it needs to work with Python 3
