This is how to make your games distributable without making your client installing python runtime.

Compiling to executable :

1.Add python dir "C:\Python26" into your "PATH" environment variables.

2. Download & install py2exe : http://sourceforge.net/projects/py2exe/files/py2exe/0.6.9/py2exe-0.6.9.win32-py2.6.exe/download

3. In your working directory : create setup.py with this following code inside
Code:
from distutils.core import setup
import py2exe

setup(console=['your_main_python_script.py'])



4.Open cmd go to your working dir and run this command "python setup.py install"

5.And run this command "python setup.py py2exe"

6.Don't forget to add required resource files into dist folder!

your distributable exe should be in working_dir\dist


have phun!

@ventilator
GREAT WORK!!hope you gonna finish this wrapper..anyway i test this with 64 bit python26 runtime but cann't run :(,would add compatibility for python 64 bit?