1 | #!/usr/bin/env python |
---|
2 | # |
---|
3 | # Puzzlebox - Brainstorms - ThinkGear Emulator - 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.06.22 |
---|
11 | # |
---|
12 | ##################################################################### |
---|
13 | |
---|
14 | from distutils.core import setup |
---|
15 | import py2exe, glob, os, sys |
---|
16 | |
---|
17 | ##################################################################### |
---|
18 | # Main |
---|
19 | ##################################################################### |
---|
20 | |
---|
21 | if __name__ != '__main__': |
---|
22 | |
---|
23 | sys.exit() |
---|
24 | |
---|
25 | setup( |
---|
26 | name='Puzzlebox Brainstorms ThinkGear Emulator', |
---|
27 | version='0.1.4', |
---|
28 | description='Puzzlebox Brainstorms ThinkGear Emulator', |
---|
29 | author='Steve Castellotti', |
---|
30 | author_email='sc@puzzlebox.info', |
---|
31 | url='http://brainstorms.puzzlebox.info', |
---|
32 | console=["puzzlebox_brainstorms_server_thinkgear.py", \ |
---|
33 | "puzzlebox_brainstorms_client_thinkgear.py"], |
---|
34 | data_files=[("puzzlebox_thinkgear_emulator_configuration.ini"), |
---|
35 | ("images", ["images/puzzlebox.ico"]), \ |
---|
36 | ], |
---|
37 | ## windows=[{ |
---|
38 | ## "script": "puzzlebox_brainstorms_server.py", |
---|
39 | ## "icon_resources": [(1, \ |
---|
40 | ## os.path.join("images", "puzzlebox.ico"))] |
---|
41 | ## }, \ |
---|
42 | ## { |
---|
43 | ## "script": "puzzlebox_brainstorms_client_local.py", |
---|
44 | ## "icon_resources": [(1, \ |
---|
45 | ## os.path.join("images", "puzzlebox.ico"))] |
---|
46 | ## }, \ |
---|
47 | ## { |
---|
48 | ## "script": "puzzlebox_brainstorms_client_network.py", |
---|
49 | ## "icon_resources": [(1, \ |
---|
50 | ## os.path.join("images", "puzzlebox.ico"))] |
---|
51 | ## } |
---|
52 | ## ], |
---|
53 | ) |
---|