Make an executable (#13)

Co-authored-by: Clement Desmidt <clement@desmidt.fr>
Reviewed-on: #13
This commit is contained in:
Shikiryu 2023-05-23 10:30:07 +02:00
parent f5ff126522
commit fd8d3a25f8
3 changed files with 9 additions and 4 deletions

4
.gitignore vendored
View File

@ -2,3 +2,7 @@ demo.py
first.py first.py
theme.py theme.py
/.idea /.idea
/dist/
!/dist/drawingtraining
/*.spec
/build/

2
makefile Normal file
View File

@ -0,0 +1,2 @@
build:
pyinstaller main.py --onefile -w --hidden-import="PIL._tkinter_finder" -n drawingtraining

View File

@ -1,3 +1,2 @@
dearpygui
pathlib
pillow pillow
pyinstaller