summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorMichiel W. Beijen <mb@x14.nl>2024-12-06 20:54:41 +0100
committerNatalia <124304+nessita@users.noreply.github.com>2025-10-08 16:40:43 -0300
commitd0d2dd7706ab8c852a113547c6b9973baf3c7e16 (patch)
tree854c0c61af6d4a760246d494b2b86e0714f832d8 /docs/intro
parent934c55f1f961f592de545564a17c0677c6111304 (diff)
[6.0.x] Fixed #35961 -- Migrated license metadata in pyproject.toml to conform PEP 639.
See https://peps.python.org/pep-0639/ and https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license-and-license-files. Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com> Backport of 96a7a652166bece8acc96d6335ebb8091de2f496 from main.
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/reusable-apps.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt
index 6c953a4043..c82a2b456e 100644
--- a/docs/intro/reusable-apps.txt
+++ b/docs/intro/reusable-apps.txt
@@ -208,7 +208,7 @@ this. For a small app like polls, this process isn't too difficult.
:caption: ``django-polls/pyproject.toml``
[build-system]
- requires = ["setuptools>=69.3"]
+ requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
@@ -219,6 +219,7 @@ this. For a small app like polls, this process isn't too difficult.
]
description = "A Django app to conduct web-based polls."
readme = "README.rst"
+ license = "BSD-3-Clause"
requires-python = ">= 3.12"
authors = [
{name = "Your Name", email = "yourname@example.com"},
@@ -228,7 +229,6 @@ this. For a small app like polls, this process isn't too difficult.
"Framework :: Django",
"Framework :: Django :: X.Y", # Replace "X.Y" as appropriate
"Intended Audience :: Developers",
- "License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",