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

13
clean.bat Normal file
View File

@@ -0,0 +1,13 @@
@echo off
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
)