barotrauma-sunken-tapes/publish.py

52 lines
1.9 KiB
Python
Raw Permalink Normal View History

2021-09-24 12:00:38 +02:00
import os
import shutil
from distutils.dir_util import copy_tree
import subprocess
import stat
def rmfulldir(top):
for root, dirs, files in os.walk(top, topdown=False):
for name in files:
filename = os.path.join(root, name)
os.chmod(filename, stat.S_IWUSR)
os.remove(filename)
for name in dirs:
os.rmdir(os.path.join(root, name))
os.rmdir(top)
def main():
try:
os.mkdir('./barotrauma-sunken-tapes')
except FileExistsError:
pass
copy_tree("./source/", "./barotrauma-sunken-tapes/source")
copy_tree("./utils/7z", "./barotrauma-sunken-tapes/utils/7z")
copy_tree("./utils/python-3.9.7-embed-amd64", "./barotrauma-sunken-tapes/utils/python-3.9.7-embed-amd64")
copy_tree("./.git", "./barotrauma-sunken-tapes/.git")
copy_tree("./docs", "./barotrauma-sunken-tapes/docs")
shutil.copy("./deploy.py", "./barotrauma-sunken-tapes/deploy.py")
shutil.copy("./main.py", "./barotrauma-sunken-tapes/main.py")
2021-09-24 12:09:11 +02:00
shutil.copy("./publish.py", "./barotrauma-sunken-tapes/publish.py")
2021-10-10 23:49:45 +02:00
shutil.copy("./tooltip.py", "./barotrauma-sunken-tapes/tooltip.py")
2021-09-24 12:00:38 +02:00
shutil.copy("./fetch_song.py", "./barotrauma-sunken-tapes/fetch_song.py")
shutil.copy("./install.bat", "./barotrauma-sunken-tapes/install.bat")
shutil.copy("./README.md", "./barotrauma-sunken-tapes/README.md")
shutil.copy("./LICENSE", "./barotrauma-sunken-tapes/LICENSE")
shutil.copy("./.gitignore", "./barotrauma-sunken-tapes/.gitignore")
archive = "7z a -tzip barotrauma-sunken-tapes.zip ./barotrauma-sunken-tapes".split(" ")
subprocess.call(archive)
shutil.copy("./barotrauma-sunken-tapes.zip",
2022-12-17 17:23:51 +01:00
"../../obzorje/barotrauma-sunken-tapes/barotrauma-sunken-tapes.zip")
2021-09-24 12:00:38 +02:00
os.remove("./barotrauma-sunken-tapes.zip")
rmfulldir("./barotrauma-sunken-tapes")
if __name__ == "__main__":
main()