Added script to prepare a zipped version ofsocializer

This commit is contained in:
Manuel Cortez 2018-12-16 17:30:31 -06:00
parent f31a7b736b
commit 325db8ab3c

View File

@ -0,0 +1,12 @@
#! /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")
if os.path.exists("dist"):
shutil.rmtree("dist")
create_archive()