From 6535a68b4aebe427759b1725de77f398a2be354c Mon Sep 17 00:00:00 2001 From: Leif Date: Wed, 30 Jul 2025 21:31:43 -0400 Subject: [PATCH] Update license field to use proper SPDX identifier This changes the license field to be a valid [SPDX identifier](https://spdx.org/licenses) aligning with [PEP 639](https://peps.python.org/pep-0639/#project-source-metadata). This populates the `license_expression` field in the PyPI API which is used by downstream tools including deps.dev --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 23200d6..2438408 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,7 @@ name="nbval", version=__version__, author="Laslett, Cortes, Fauske, Kluyver, Pepper, Fangohr", + license="BSD-3-Clause", description='A py.test plugin to validate Jupyter notebooks', long_description=readme, long_description_content_type="text/markdown",