BRE/webapi/pyinstaller_run.bat
2024-06-07 19:50:21 +03:00

15 lines
453 B
Batchfile

@echo off
venv\Scripts\pyinstaller --clean --onefile --distpath ./bin --hidden-import pandas._libs.tslibs.timedeltas, --hidden-import pandas._libs.tslibs.base menu.py
del menu.spec
rmdir /S /Q build
rmdir /S /Q __pycache__
venv\Scripts\pyinstaller --clean --onefile --distpath ./bin --hidden-import pandas._libs.tslibs.timedeltas, --hidden-import pandas._libs.tslibs.base exporter.py
del exporter.spec
rmdir /S /Q build
rmdir /S /Q __pycache__
exit