in hooks/post_gen_project.py [0:0]
def remove_file(filename): """ generic remove file from project dir """ fullpath = os.path.join(PROJECT_DIRECTORY, filename) if os.path.exists(fullpath): os.remove(fullpath)