- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
22 lines (20 loc) · 654 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (20 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
importsys, cx_Freeze
cx_Freeze.setup(
name="Java City",
version="0.1",
description="The beautiful solution for your all of your Java Town problems",
options={
"build_exe": {
"packages": ['os', 'sys', 'pyperclip', 'json', 're', 'pygame'],
"include_files": ["colorpallete.json", "default color palletes", "JavaCity.png"]
},
"bdist_mac": {
"iconfile": "JavaCity.icns",
"bundle_name": "JavaCity"
}
},
executables= [
cx_Freeze.Executable("javaCity.py", base='Win32GUI'ifsys.platform=='win32'elseNone)
]
)
# python3 setup.py bdist_mac