summaryrefslogtreecommitdiff
path: root/src/setup.py
blob: db061092ef1ce0af781377e789dc2694428f7414 (plain)
1
2
3
4
5
6
7

from os import system


res = system("pyinstaller -w -i .\\gui\\ressources\\icon.ico main.py")
if res == 0:
    system(".\\dist\\main\\main.exe")