I'm writing down these quick notes so I can remember the steps for getting py2exe to work with GTK.
setup.py:
from distutils.core import setup
import py2exe
setup(
name = 'ploteq',
description = 'Bunnys Plotting Tool',
version = '1.0',
windows = [
{
'script': 'ploteq.py',
}
],
options = {
'py2exe': {
'packages':'encodings',
'includes': 'cairo, pango, pangocairo, atk, gobject',
}
},
data_files=[
'ploteq.glade',
]
)
This entry is from my tutorial section and was written on Nov. 2, 2008. There have been 0 comments so far.
@depping Tweeting while flying, that's almost ironic. (about 4 hours ago)