Created
June 11, 2019 07:45
-
-
Save hclivess/a755b1493e707b0f5837993f51c620ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
del /f /s /q dist 1>nul | |
rmdir /s /q dist | |
mkdir dist | |
python -m nuitka --follow-imports wallet.py --windows-icon=graphics\icon.ico --standalone --show-progress -j 8 --recurse-all --include-package=coincurve --plugin-enable=tk-inter | |
robocopy wallet.dist dist\files /MOVE /E | |
robocopy "C:\Program Files\Python37\Lib\site-packages\Cryptodome" "dist\files\Cryptodome" /MIR | |
robocopy "C:\Program Files\Python37\Lib\site-packages\coincurve" "dist\files\coincurve" /MIR | |
copy peers.txt dist\files\peers.txt | |
copy peers.txt dist\files\suggested_peers.txt | |
copy config.txt dist\files\config.txt | |
pause | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment