add setup and build.bat files

This commit is contained in:
Jay Lee
2014-06-28 10:17:10 -04:00
parent d0356796e9
commit 2316806437
3 changed files with 83 additions and 0 deletions

15
setup.py Normal file
View File

@ -0,0 +1,15 @@
from distutils.core import setup
import py2exe, sys, os
sys.argv.append('py2exe')
setup(
console = ['gam.py'],
zipfile = None,
options = {'py2exe':
{'optimize': 2,
'bundle_files': 1,
'dist_dir' : 'gam'}
}
)