Create encapsulation.sh

This commit is contained in:
Yoshiko2
2020-12-19 23:27:41 +08:00
committed by GitHub
parent fcd782f72d
commit c2a9261ccb

6
encapsulation.sh Normal file
View File

@@ -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/