BRE/webapi/pyinstaller_run.bat

15 lines
453 B
Batchfile
Raw Permalink Normal View History

2024-06-07 19:50:21 +03:00
@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