15 lines
453 B
Batchfile
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 |