From 5bc7cc9b21400af03bcb7b2cb2b8c9d0ed34fdc5 Mon Sep 17 00:00:00 2001 From: Voxel <41875513+VoxelCubes@users.noreply.github.com> Date: Fri, 2 Sep 2022 20:40:17 +0200 Subject: [PATCH] added pyinstaller build system --- build-pyinstaller.sh | 2 ++ release.sh => release-pypi.sh | 0 2 files changed, 2 insertions(+) create mode 100644 build-pyinstaller.sh rename release.sh => release-pypi.sh (100%) diff --git a/build-pyinstaller.sh b/build-pyinstaller.sh new file mode 100644 index 0000000..29bd355 --- /dev/null +++ b/build-pyinstaller.sh @@ -0,0 +1,2 @@ +# Perform a Linux build. +pyinstaller --onefile --noconfirm --clean --workpath=build --distpath=dist deepqt/main.py --name DeepQt.elf \ No newline at end of file diff --git a/release.sh b/release-pypi.sh similarity index 100% rename from release.sh rename to release-pypi.sh