summaryrefslogtreecommitdiff
path: root/exefying.bat
blob: bce966de19ea9150cab1c9e79eb62ace23408521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
REM  Exefying the script...

python.exe -OO mkexe.py py2exe

REM  Uncomment next line, if you do not want to compress...
REM  goto end

REM  recompress the library
cd dist\
7z.exe -aoa x library.zip -olibrary\
cd library\
7z.exe a -tzip -mx9 ..\library.zip -r
cd ..
rd library /s /q

REM  UPX-Packing
upx.exe --best *.*
:end
echo Done