-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
245 lines (203 loc) · 7.27 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
from cx_Freeze import setup, Executable
import urllib.request
import zipfile
import pathspec
import sys
import os
import subprocess
import shutil
import json
import time
import uuid
start_time = time.time()
sys.setrecursionlimit(10000)
with open("webdeck/version.json", encoding="utf-8") as f:
version_info = json.load(f)
version = version_info["versions"][0]["version"]
def get_ignored_files():
ignored_files = [
".git",
".gitignore",
".github",
"build.bat",
"requirements.txt",
"tests/*",
"*.py",
"!nircmd*.exe",
]
with open(".gitignore", "r") as gitignore_file:
for line in gitignore_file:
line = line.strip()
if line and not line.startswith("#"):
if line.startswith("\\"):
line = line[1:]
ignored_files.append(line)
print("IGNORED:", ignored_files)
return ignored_files
ignored_files = get_ignored_files()
def is_excluded(file_path):
rel_path = os.path.relpath(file_path)
spec = pathspec.PathSpec.from_lines("gitwildmatch", ignored_files)
if spec.match_file(rel_path):
# Check for negation patterns
negation_spec = pathspec.PathSpec.from_lines("gitwildmatch", [line[1:] for line in ignored_files if line.startswith("!")])
if negation_spec.match_file(rel_path):
print(f"NOT EXCLUDED (negation): {file_path}")
return False
print(f"EXCLUDED: {file_path}")
return True
# print(f"NOT EXCLUDED: {file_path}")
return False
def get_include_files():
include_files = []
for root, dirs, files in os.walk("."):
# Check if the directory itself is excluded first
if is_excluded(root):
continue
for file in files:
file_path = os.path.join(root, file)
if not is_excluded(file_path.replace('\\', '/')):
if file.lower().startswith("nircmd") and "temp" in root:
include_files.append((file_path, os.path.join("lib", file)))
elif file.startswith("README"):
if file == "README.md":
include_files.append((file_path, os.path.join("docs", "README-en.md")))
else:
include_files.append((file_path, os.path.join("docs", file)))
else:
include_files.append((file_path, file_path))
return include_files
def download_nircmd():
if os.path.isfile("temp/nircmd.exe"):
return
zippath = "temp/nircmd.zip"
url = "https://www.nirsoft.net/utils/nircmd.zip"
urllib.request.urlretrieve(url, zippath)
with zipfile.ZipFile(zippath, "r") as zip_ref:
zip_ref.extractall("temp")
os.remove(zippath)
def sign_executable(file_path):
signtool_path = r"C:\Program Files (x86)\Windows Kits\10\bin\x64\signtool.exe"
timestamp_url = "http://timestamp.digicert.com"
command = [
signtool_path,
"sign",
"/a",
"/fd", "SHA256",
"/tr", timestamp_url,
"/td", "SHA256",
file_path
]
result = subprocess.run(command, capture_output=True, text=True)
if result.returncode != 0:
print(f"Failed to sign {file_path}: {result.stderr}")
else:
print(f"Successfully signed {file_path}")
def zip_build(build_dir):
# Create a temporary directory outside the build directory to hold the build directory with the desired structure
temp_dir = os.path.join("temp", "PortableBuild")
os.makedirs(temp_dir, exist_ok=True)
# Move the build directory into the temporary directory
shutil.move(build_dir, temp_dir)
# Rename the directory inside PortableBuild to "WebDeck"
final_dir = os.path.join("temp", "PortableBuild")
inner_dir = os.path.join(final_dir, os.listdir(final_dir)[0])
new_inner_dir = os.path.join(final_dir, "WebDeck")
# Ensure the path doesn't exist before creating it
if os.path.exists(new_inner_dir):
shutil.rmtree(new_inner_dir)
os.rename(inner_dir, new_inner_dir)
# Create a zip file of the temporary directory
zip_file = shutil.make_archive('WebDeck-win-amd64-portable', 'zip', final_dir)
# Move the zip file to the /dist directory
dist_dir = "dist"
if not os.path.exists(dist_dir):
os.makedirs(dist_dir)
shutil.move(zip_file, os.path.join(dist_dir, os.path.basename(zip_file)))
# Remove the PortableBuild directory
shutil.rmtree(final_dir)
print(f"Portable build zipped as '{os.path.join(dist_dir, os.path.basename(zip_file))}'")
if __name__ == "__main__":
download_nircmd()
build_exe_options = {
"excludes": ["cx_Freeze", "pathspec"],
"packages": [],
"zip_exclude_packages": [
"_sounddevice_data",
"_soundfile",
"_soundfile_data",
"jaraco",
"numpy",
"pygame",
"soundfile",
"python-vlc",
"vlc",
],
"zip_include_packages": "*",
"include_msvcr": False,
"include_files": get_include_files(),
}
bdist_msi_options = {
"upgrade_code": f"{{{uuid.uuid4()}}}",
"add_to_path": True,
"initial_target_dir": r"[ProgramFilesFolder]\WebDeck",
"install_icon": "static/icons/icon.ico",
"summary_data": {
"author": "webdeck.app",
"comments": "WebDeck is an open-source app for managing custom shortcuts.",
"keywords": "WebDeck, remote control, web application",
}
}
base = "Win32GUI" if sys.platform == "win32" else "gui"
# base = 'console' if sys.platform=='win32' else None
executables = [
Executable(
script="run.py",
base=base,
target_name="WebDeck",
icon="static/icons/icon.ico",
shortcut_name="WebDeck",
shortcut_dir="ProgramMenuFolder",
copyright="WebDeck",
trademarks="WebDeck",
manifest=None,
uac_admin=True,
),
Executable(
script="app/updater/updater.py",
base="console",
target_name="update",
icon=None,
shortcut_name="WebDeck Updater",
shortcut_dir="ProgramMenuFolder",
copyright="WebDeck",
trademarks="WebDeck",
manifest=None,
uac_admin=True,
),
]
setup(
name="WebDeck",
description="WebDeck",
author="webdeck.app",
author_email="[email protected]",
url="https://webdeck.app/",
license="GPLv3",
version=version,
options={
"build_exe": build_exe_options,
"bdist_msi": bdist_msi_options,
},
executables=executables,
)
build_dir = f"build/exe.win-amd64-{sys.version_info.major}.{sys.version_info.minor}"
# Sign the main executable
sign_executable(os.path.join(build_dir, "WebDeck.exe"))
# Sign the updater executable
sign_executable(os.path.join(build_dir, "update.exe"))
# Zip the build directory
zip_build(build_dir)
end_time = time.time()
elapsed_time = end_time - start_time
minutes, seconds = divmod(int(elapsed_time), 60)
print(f"Build done! {minutes}m {seconds}s")