From c29fed27f48d327ef722d25d8c6d1bf2829aca8f Mon Sep 17 00:00:00 2001 From: Amy Wooding Date: Wed, 1 Feb 2023 12:02:07 -0500 Subject: [PATCH] modernize the template --- cookiecutter.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cookiecutter.json b/cookiecutter.json index d411e76..cf3153e 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -1,12 +1,12 @@ { "project_name": "project_name", "repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}", - "default_branch": ["master", "main"], + "default_branch": ["main", "master"], "module_name": "src", - "author_name": "Your name (or your organization/company/team)", + "author_name": "Your name (or the copyright holder)", "description": "A short description of this project.", "open_source_license": ["MIT", "BSD-2-Clause", "Proprietary"], - "python_version": ["3.7", "3.6", "latest", "3.8"], + "python_version": ["latest", "3.11", "3.10", "3.9", "3.8", "3.7"], "conda_path": "~/anaconda3/bin/conda", "upstream_location": ["github.com", "gitlab.com", "bitbucket.org", "your-custom-repo"] }