Skip to content

Commit

Permalink
refactor: add cookiecutter prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
baggiponte committed Nov 30, 2023
1 parent 1d27011 commit 977f858
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,15 @@
"requires_python": "",
"__author_name": "{{ cookiecutter.author_name.title() }}",
"__package_description": "{{ cookiecutter.package_description.capitalize() }}",
"__package_emoji": "{{ cookiecutter.package_emoji ~ ' ' if cookiecutter.package_emoji }}"
"__package_emoji": "{{ cookiecutter.package_emoji ~ ' ' if cookiecutter.package_emoji }}",
"__prompts__": {
"author_name": "Name of the author",
"author_email": "Email of the author",
"author_github_handle": "Github handle of the author",
"repo_name": "Name of the repository. Will be sanitized",
"package_name": "Name of the package. Defaults to the sanitized `repo_name`",
"package_description": "Description of the package",
"package_emoji": "[Optional] Emoji to be used for the package",
"requires_python": "Minimum python version required"
}
}

0 comments on commit 977f858

Please sign in to comment.