This commit is contained in:
Alexis Delhaie
2020-08-09 19:00:43 +02:00
commit 801a85da08
12 changed files with 338 additions and 0 deletions

16
build.bat Normal file
View File

@@ -0,0 +1,16 @@
@echo off
call clean.bat
pip install -r requirements.txt
IF EXIST "build" (
RMDIR /S /Q build
)
IF EXIST "dist" (
RMDIR /S /Q dist
)
IF EXIST "__pycache__" (
RMDIR /S /Q __pycache__
)
IF EXIST "main.spec" (
ERASE main.spec
)
pyinstaller --onefile --uac-admin --icon=app.ico main.py