Ticket #35961: 0001-Implement-PEP-639-licence-tags-in-pyproject.toml.patch

File 0001-Implement-PEP-639-licence-tags-in-pyproject.toml.patch, 1.0 KB (added by Michiel Beijen, 12 hours ago)
  • pyproject.toml

    From 1f02938a4fbe71e17c1a942ba94c8dd33d80d450 Mon Sep 17 00:00:00 2001
    From: "Michiel W. Beijen" <mb@x14.nl>
    Date: Sun, 1 Dec 2024 18:28:24 +0100
    Subject: [PATCH] Implement PEP 639 licence tags in pyproject.toml
    
    ---
     pyproject.toml | 4 ++--
     1 file changed, 2 insertions(+), 2 deletions(-)
    
    diff --git a/pyproject.toml b/pyproject.toml
    index 86ea7393ec..3f2ce56cfd 100644
    a b authors = [  
    1616]
    1717description = "A high-level Python web framework that encourages rapid development and clean, pragmatic design."
    1818readme = "README.rst"
    19 license = {text = "BSD-3-Clause"}
     19license = "BSD-3-Clause"
     20license-files = ["LICENSE", "LICENSE.python"]
    2021classifiers = [
    2122    "Development Status :: 2 - Pre-Alpha",
    2223    "Environment :: Web Environment",
    2324    "Framework :: Django",
    2425    "Intended Audience :: Developers",
    25     "License :: OSI Approved :: BSD License",
    2626    "Operating System :: OS Independent",
    2727    "Programming Language :: Python",
    2828    "Programming Language :: Python :: 3",
Back to Top