summaryrefslogtreecommitdiff
path: root/exefying.bat
blob: 2e84720cbef86887d81aba3aca98df37d1db7c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@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

:end
echo Done