Skip to content

Commit

Permalink
feat: cookiecutter options
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-code committed Nov 17, 2022
1 parent e022c21 commit 1992839
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions cookiecutter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"project_name": "project_name",
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"module_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"author_name": "Your name (or your organization/company/team)",
"description": "A short description of the project.",
"python_version_number": "3.8",
"environment_manager": [
"conda",
"virtualenv",
"pipenv",
"none"
],
"dependency_file": [
"requirements.txt",
"environment.yml",
"Pipfile"
],
"open_source_license": [
"MIT",
"BSD-3-Clause",
"No license file"
]
}

0 comments on commit 1992839

Please sign in to comment.