@echo off
|
echo Installing packaging dependencies...
|
pip install -r requirements-packaging.txt
|
|
echo Building executable with PyInstaller...
|
pyinstaller pyinstaller_config.spec
|
|
echo Build process completed. Check the 'dist' folder for the executable.
|
pause
|