mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 11:18:08 -06:00
12 lines
219 B
Python
12 lines
219 B
Python
import shutil
|
|
import os
|
|
import sys
|
|
|
|
def create_archive():
|
|
os.chdir("..\\src")
|
|
print("Creating zip archive...")
|
|
folder = "dist"
|
|
shutil.make_archive("twblue", "zip", folder)
|
|
os.chdir("..\\scripts")
|
|
|
|
create_archive() |