blob: 528087fc644be7ea31d754cdb8e6d46cad17d6d3 (
plain)
1
2
3
4
5
6
7
8
9
|
@REM Build all the kits for coverage.py
@REM Add "upload" onto the command line to also upload.
for %%v in (26 27 31 32) do (
call switchpy c:\vpy\coverage\%%v
python setup.py bdist_wininst %1
)
call switchpy c:\vpy\coverage\26
python setup.py sdist --keep-temp --formats=gztar fixtar --owner=ned --group=coverage --clean %1
|