mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-11-04 22:07:05 +00: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()
|