This project is scaffolded with copier.
Add this to your .zshrc file:
template() {
if [ -z "$1" ]; then
echo "Usage: template <project_name>"
return 1
fi
copier copy gh:ajay-bhargava/python-template "$1"
}Then, run template <project_name> to scaffold a new project.