From a266f2180c0909538251d8b86c5ce64778acccf5 Mon Sep 17 00:00:00 2001 From: FeliPython Date: Sun, 25 Aug 2024 16:53:35 -0300 Subject: [PATCH] Update author format and license in pyproject.toml Changed the author format to a dictionary to align with PEP 621 standards. Updated the license identifier to "CC-BY-NC-SA-4.0" for better specificity. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5d15037..dbeff45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,8 +3,8 @@ name = "building-your-first-api-with-django-and-django-rest-framework" version = "0.2.0" description = "Tutorial for you to learn how to create a API using Django and Django Rest Framework" readme = "README.md" -authors = ["FeliPython "] -license = "CC BY-NC-SA" +authors = [{ name = "FeliPython", email = "felipejpa15@gmail.com" }] +license = "CC-BY-NC-SA-4.0" requires-python = ">=3.12" dependencies = [ "django>=5.1",