Possible duplicate:py2exe - generate a single executable file
I made application.exe from application.py using "pyinstaller". So many .dll files have been created in this process. How can I create an application with a single .exe file
Have you tried using the --onefile for PyInstaller? See the documentation for this.
--onefile
consider using http://www.py2exe.org/ .
Hello!