github / src / setup.py @ 177f07f8
1 |
from cx_Freeze import setup, Executable |
---|---|
2 |
|
3 |
exe = Executable( |
4 |
script="cocomud.py",
|
5 |
base="Win32GUI",
|
6 |
) |
7 |
|
8 |
includefiles = [ |
9 |
"translations",
|
10 |
"../dolapi.dll",
|
11 |
"../jfwapi.dll",
|
12 |
"../nvdaControllerClient.dll",
|
13 |
"../SAAPI32.dll",
|
14 |
"../UniversalSpeech.dll",
|
15 |
"../settings",
|
16 |
] |
17 |
|
18 |
setup( |
19 |
name = "CocoMUD client",
|
20 |
version = "0.1",
|
21 |
description = "The CocoMUD client.",
|
22 |
options = {'build_exe': {'include_files': includefiles}}, |
23 |
executables = [exe] |
24 |
) |
- « Previous
- 1
- …
- 5
- 6
- 7
- Next »