0

Added a setup.py for py2exe

This commit is contained in:
Andrew Brown
2010-09-28 23:13:13 -04:00
parent 7a696fcee0
commit fec7f1b8e4

13
setup.py Normal file
View File

@@ -0,0 +1,13 @@
from distutils.core import setup
import py2exe
setup(console=['gmap.py'],
data_files=[('textures', ['textures/lava.png', 'textures/water.png']),
('', ['template.html'])],
zipfile = None,
options = {'py2exe': {
'bundle_files': 1,
}},
)