From 1ec08f9e88beaa3ddb81298e69d0972b992788c4 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 22 Aug 2023 22:55:50 -0400 Subject: [PATCH] Add build script --- .gitignore | 1 + build.bat | 1 + 2 files changed, 2 insertions(+) create mode 100644 build.bat diff --git a/.gitignore b/.gitignore index b29dee5..10b9f9e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ #Project specific build/ dist/ +ParadoxModInstaller.exe # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..7422fa8 --- /dev/null +++ b/build.bat @@ -0,0 +1 @@ +pyinstaller main.py --clean --onefile --console --name ParadoxModInstaller.exe --distpath . \ No newline at end of file