From cf3c7276a7f5040a77b68cf53fd0e2f91de664c2 Mon Sep 17 00:00:00 2001 From: eblade Date: Tue, 4 Aug 2009 16:20:14 -0400 Subject: [PATCH] add bat/py for making an exe. exe errors with "can't find module cairo". no idea how to fix. --- pyfpdb/makeexe.bat | 1 + pyfpdb/makeexe.py | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 pyfpdb/makeexe.bat create mode 100644 pyfpdb/makeexe.py diff --git a/pyfpdb/makeexe.bat b/pyfpdb/makeexe.bat new file mode 100644 index 00000000..ddcdba7c --- /dev/null +++ b/pyfpdb/makeexe.bat @@ -0,0 +1 @@ +python makeexe.py py2exe diff --git a/pyfpdb/makeexe.py b/pyfpdb/makeexe.py new file mode 100644 index 00000000..01139443 --- /dev/null +++ b/pyfpdb/makeexe.py @@ -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"}]) +