1 | #!/usr/bin/env python |
---|
2 | # |
---|
3 | # Puzzlebox - 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 ThinkGear Emulator', |
---|
27 | version='0.1.4', |
---|
28 | description='Puzzlebox ThinkGear Emulator', |
---|
29 | author='Steve Castellotti', |
---|
30 | author_email='sc@puzzlebox.info', |
---|
31 | url='http://brainstorms.puzzlebox.info', |
---|
32 | console=["puzzlebox_thinkgear_server.py", |
---|
33 | "puzzlebox_thinkgear_client.py"], |
---|
34 | data_files=[("puzzlebox_thinkgear_emulator_configuration.ini"), |
---|
35 | ("images", ["images/puzzlebox.ico"]), |
---|
36 | ], |
---|
37 | ) |
---|