ED_LRR/build.bat
Daniel Seiller c290d5eb12 feat(GUI): Implement route plotting and fuzzy search
Implement route plotting in GUI
Use batch fuzzy search to find systems
search all systems at once after adding
added some error checking
2019-08-06 03:35:14 +02:00

11 lines
No EOL
313 B
Batchfile

rm -rf build dist *.egg-info exe
python build_gui.py
pip uninstall -y ed_lrr_gui
pip install -I . setuptools_rust
python setup.py build
python setup.py bdist_wheel
python setup.py sdist
mkdir exe
cd exe
pyinstaller --noupx --noconsole --key="ED_LRR_GUI" --name ED_LRR_GUI ..\ed_lrr_gui\__main__.py
cd ..