How can I package python+pygame programs as executables?
macos, py2exe, pygame, python, windows-installer
Solution
How about PyInstaller? Last revision seems to have been made around 2 days ago, at the time of this writing, so it appears to be maintained, and claims to support Windows, Linux, and OSX.
cx_Freeze also looks very promising. It also claims to be cross-platform. Yet another one is py2app, which support OSX.
Problem
I used `py2exe` earlier for that but it doesn't seem to be maintained any more, the last package they have is for Python 2.6. I need the application with Python 2.7 + Pygame. Big bonus points if it lets me make OSX packages as well.