Browse Source

Adding license support

main
Ryan Reed 2 years ago
parent
commit
d081027d60
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      cookiecutter.json
  2. +1
    -1
      {{cookiecutter.package_name}}/LICENSE
  3. +1
    -1
      {{cookiecutter.package_name}}/pyproject.toml

+ 1
- 1
cookiecutter.json View File

@ -7,7 +7,7 @@
"author_email": "author@website.com",
"author_name": "Project Author",
"license": ["GNU GPL v3.0", "MIT", "None"],
"license": ["GPLv3", "MIT", "None"],
"git_branch": "main",
"github_repo_user": "",


+ 1
- 1
{{cookiecutter.package_name}}/LICENSE View File

@ -1,4 +1,4 @@
{% if cookiecutter.license == 'GNU GPL v3.0' %}
{% if cookiecutter.license == 'GPLv3' %}
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007


+ 1
- 1
{{cookiecutter.package_name}}/pyproject.toml View File

@ -3,7 +3,7 @@ name = "{{cookiecutter.package_name}}"
version = "0.0.1"
description = "{{cookiecutter.package_description}}"
authors = ["{{cookiecutter.author_name}} <{{cookiecutter.author_email}}>"]
#license = "GPLv3"
license = "{{cookiecutter.license}}"
readme = "README.md"
[tool.poetry.dependencies]


Loading…
Cancel
Save