forked from Dpeta/pesterchum-alt-servers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
148 lines (131 loc) · 3.78 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# Windows-only cx_freeze setup file, macOS may work but I've not tested it.
import sys
from cx_Freeze import setup, Executable
import pygame
from version import buildVersion
if sys.version_info < (3, 0, 0):
sys.exit("Python versions lower than 3 are not supported.")
def is_64bit() -> bool:
return sys.maxsize > 2**32
path = ""
base = None
if sys.platform == "win32":
base = "Win32GUI"
path = sys.path
if is_64bit() == True:
path.append(
r"C:\Program Files (x86)\Windows Kits\10\Redist\10.0.22000.0\ucrt\DLLs\x64"
)
elif is_64bit() == False:
path.append(
r"C:\Program Files (x86)\Windows Kits\10\Redist\10.0.22000.0\ucrt\DLLs\x86"
)
print("Path = " + str(path))
includefiles = [
"quirks",
"smilies",
"themes",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md",
"PCskins.png",
"Pesterchum.png",
]
build_exe_options = {
# "includes": ['PyQt6.QtCore',
# 'PyQt6.QtGui',
# 'PyQt6.QtWidgets'],
"excludes": [
"collections.sys",
"collections._sre",
"collections._json",
"collections._locale",
"collections._struct",
"collections.array",
"collections._weakref",
"PyQt6.QtMultimedia",
"PyQt6.QtDBus",
"PyQt6.QtDeclarative",
"PyQt6.QtHelp",
"PyQt6.QtNetwork",
"PyQt6.QtSql",
"PyQt6.QtSvg",
"PyQt6.QtTest",
"PyQt6.QtWebKit",
"PyQt6.QtXml",
"PyQt6.QtXmlPatterns",
"PyQt6.phonon",
"PyQt6.QtAssistant",
"PyQt6.QtDesigner",
"PyQt6.QAxContainer",
"pygame.tests",
"pydoc_data",
],
"include_files": includefiles,
"include_msvcr": True, # cx_freeze copies 64-bit binaries always?
"path": path # Improved in 6.6, path to be safe
# VCRUNTIME140.dll <3
}
if (
(sys.platform == "win32")
& (sys.version_info.major == 3)
& (sys.version_info.minor == 8)
):
build_exe_options["excludes"].append("tkinter")
bdist_mac_options = {"iconfile": "trayicon32.icns", "bundle_name": "Pesterchum"}
description = "Pesterchum"
icon = "pesterchum.ico"
# See https://stackoverflow.com/questions/15734703/use-cx-freeze-to-create-an-msi-that-adds-a-shortcut-to-the-desktop
shortcut_table = [
(
"DesktopShortcut", # Shortcut
"DesktopFolder", # Directory_
"Pesterchum", # Name
"TARGETDIR", # Component_
"[TARGETDIR]pesterchum.exe", # Target
None, # Arguments
description, # Description
None, # Hotkey
None, # Icon (Is inherited from pesterchum.exe)
None, # IconIndex
None, # ShowCmd
"TARGETDIR", # WkDir
),
(
"StartMenuShortcut", # Shortcut
"StartMenuFolder", # Directory_
"Pesterchum", # Name
"TARGETDIR", # Component_
"[TARGETDIR]pesterchum.exe", # Target
None, # Arguments
description, # Description
None, # Hotkey
None, # Icon
None, # IconIndex
None, # ShowCmd
"TARGETDIR", # WkDir
),
]
msi_data = {"Shortcut": shortcut_table}
bdist_msi_options = {
"data": msi_data,
"summary_data": {"comments": "FL1P", "keywords": "Pesterchum"},
"upgrade_code": "{86740d75-f1f2-48e8-8266-f36395a2d77f}",
"add_to_path": False, # !!!
"all_users": False,
"install_icon": "pesterchum.ico",
}
setup(
name="Pesterchum",
version=buildVersion,
url="https://github.com/Dpeta/pesterchum-alt-servers",
description=description, # "P3ST3RCHUM",
options={
"build_exe": build_exe_options,
"bdist_msi": bdist_msi_options,
"bdist_mac": bdist_mac_options,
},
packages="",
executables=[Executable("pesterchum.py", base=base, icon=icon)],
)