-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_installer.py
40 lines (35 loc) · 1.07 KB
/
build_installer.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
import os
import subprocess
import shutil
import sys
def build_exe():
print("Building executable with PyInstaller...")
subprocess.run([
'pyinstaller',
'--name=wiki',
'--onedir',
'--clean',
'--add-data=README.md;.',
'--add-data=LICENSE;.',
'wiki_cli/cli.py'
], check=True)
def build_installer():
print("Building installer with Inno Setup...")
# Assuming Inno Setup is installed in the default location
inno_compiler = r'"C:\Program Files (x86)\Inno Setup 6\ISCC.exe"'
subprocess.run(f'{inno_compiler} install_script.iss', check=True)
def main():
# Clean previous builds
if os.path.exists('build'):
shutil.rmtree('build')
if os.path.exists('dist'):
shutil.rmtree('dist')
try:
build_exe()
build_installer()
print("Installation package created successfully!")
except subprocess.CalledProcessError as e:
print(f"Error during build process: {e}")
sys.exit(1)
if __name__ == '__main__':
main()