Files
Kur3ab/beta1/gitea_analyzer_app/build_exe.bat

12 lines
273 B
Batchfile

@echo off
echo Installing libraries...
python -m pip install -r requirements.txt
echo Building EXE...
python -m PyInstaller --onefile --windowed --name GiteaAnalyzer main.py
echo.
echo Done! EXE file is here: dist\GiteaAnalyzer.exe
echo You can copy it to Desktop.
pause