mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 19:28:09 -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()
|