add bat/py for making an exe. exe errors with "can't find module cairo". no idea how to fix.

This commit is contained in:
eblade 2009-08-04 16:20:14 -04:00
parent 541c61c152
commit cf3c7276a7
2 changed files with 11 additions and 0 deletions

1
pyfpdb/makeexe.bat Normal file
View File

@ -0,0 +1 @@
python makeexe.py py2exe

10
pyfpdb/makeexe.py Normal file
View File

@ -0,0 +1,10 @@
from distutils.core import setup
import py2exe
opts = {
'py2exe': {
'includes': "pango,atk,gobject",
}
}
setup(name='Free Poker Database', version='0.12', console=[{"script":"fpdb.py"}])