diff --git a/scripts/prepare_zipversion.py b/scripts/prepare_zipversion.py new file mode 100644 index 0000000..088b567 --- /dev/null +++ b/scripts/prepare_zipversion.py @@ -0,0 +1,15 @@ +#! /usr/bin/env python# -*- coding: iso-8859-1 -*- +import shutil +import os + +def create_archive(): + os.chdir("..\\src") + print "Creating zip archive..." + shutil.make_archive("socializer", "zip", "dist/main") + if os.path.exists("dist"): + shutil.rmtree("dist") + if os.path.exists("build"): + shutil.rmtree("build") + os.chdir("..\\scripts") + +create_archive() \ No newline at end of file