autogen/python/templates/new-package/hooks/post_gen_project.py
2024-08-29 10:29:12 -04:00

8 lines
141 B
Python

import os
import shutil
source_dir = os.getcwd()
target_dir = "{{ cookiecutter.__final_destination }}"
shutil.move(source_dir, target_dir)