From c2a9261ccb5b4aa8a52fd29bc6714b453440f53d Mon Sep 17 00:00:00 2001 From: Yoshiko2 Date: Sat, 19 Dec 2020 23:27:41 +0800 Subject: [PATCH] Create encapsulation.sh --- encapsulation.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 encapsulation.sh diff --git a/encapsulation.sh b/encapsulation.sh new file mode 100644 index 0000000..c3b7a78 --- /dev/null +++ b/encapsulation.sh @@ -0,0 +1,6 @@ +pyinstaller --onefile AV_Data_Capture.py --hidden-import ADC_function.py --hidden-import core.py +cp config.ini dist/ +find . -name '*.pyc' -delete +find . -name '__pycache__' -type d | xargs rm -fr +find . -name '.pytest_cache' -type d | xargs rm -fr +rm -rf build/