1 | #!/usr/bin/env python |
---|
2 | # |
---|
3 | # Puzzlebox - Brainstorms - Py2Exe Distutils |
---|
4 | # |
---|
5 | # Copyright Puzzlebox Productions, LLC (2010) |
---|
6 | # |
---|
7 | # This code is released under the GNU Pulic License (GPL) version 2 |
---|
8 | # For more information please refer to http://www.gnu.org/copyleft/gpl.html |
---|
9 | # |
---|
10 | # Last Update: 2010.02.02 |
---|
11 | # |
---|
12 | ##################################################################### |
---|
13 | |
---|
14 | from distutils.core import setup |
---|
15 | import py2exe, pygame, glob, os, sys |
---|
16 | |
---|
17 | ##################################################################### |
---|
18 | # Main |
---|
19 | ##################################################################### |
---|
20 | |
---|
21 | if __name__ != '__main__': |
---|
22 | |
---|
23 | sys.exit() |
---|
24 | |
---|
25 | setup( |
---|
26 | name='Puzzlebox Brainstorms', |
---|
27 | version='0.1.0', |
---|
28 | description='Puzzlebox Brainstorms', |
---|
29 | author='Steve Castellotti', |
---|
30 | author_email='sc@puzzlebox.info', |
---|
31 | url='http://www.puzzlebox.info', |
---|
32 | # console=["puzzlebox_brainstorms_client_interface.py"], |
---|
33 | data_files=[("images", |
---|
34 | glob.glob(os.path.join('images', '*.*'))), |
---|
35 | #("fonts", |
---|
36 | #glob.glob(os.path.join('fonts', '*.*'))) |
---|
37 | ], |
---|
38 | windows=[{ |
---|
39 | "script": "puzzlebox_brainstorms_client_interface.py", |
---|
40 | "icon_resources": [(1, "puzzlebox.ico")] |
---|
41 | }], |
---|
42 | ) |
---|