From 7ac3087f50aa240a6516beb259ba258277b485ed Mon Sep 17 00:00:00 2001 From: Nabil Freij Date: Fri, 31 Oct 2025 10:33:06 -0700 Subject: [PATCH] Licence change --- {{ cookiecutter.package_name }}/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{ cookiecutter.package_name }}/pyproject.toml b/{{ cookiecutter.package_name }}/pyproject.toml index 5b856e32..aa5af287 100644 --- a/{{ cookiecutter.package_name }}/pyproject.toml +++ b/{{ cookiecutter.package_name }}/pyproject.toml @@ -16,7 +16,7 @@ name = "{{ cookiecutter.module_name }}" description = "{{ cookiecutter.short_description }}" requires-python = ">={{ cookiecutter.minimum_python_version }}" readme = { file = "README.rst", content-type = "text/x-rst" } -license = { file = "licenses/LICENSE.rst" } +license-files = ["licenses/LICENSE.rst"] {%- if cookiecutter.author_name and cookiecutter.author_email %} authors = [ { name = "{{ cookiecutter.author_name }}", email = "{{ cookiecutter.author_email }}" },