autogen/python/templates/new-package/hooks/post_gen_project.py

8 lines
141 B
Python
Raw Normal View History

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