From 7baf9210100031ec48a56ce097767ebd2ea5f624 Mon Sep 17 00:00:00 2001 From: Steven Challis Date: Tue, 22 Aug 2023 14:14:50 -0500 Subject: [PATCH] Use SPDX short code for license in Pyproject.toml This will ensure that downstream tools e.g. Pypi are able to correctly map the license to a known one instead of marking it as Proprietary. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6f9c1e0..c254782 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "1.11.6" # Remember to also change __init__.py version description = 'A Django authentication backend for Microsoft ADFS and AzureAD' authors = ['Joris Beckers '] maintainers = ['Jonas Krüger Svensson ', 'Sondre Lillebø Gundersen '] -license = 'BSD' +license = 'BSD-1-Clause' homepage = 'https://github.com/snok/django-auth-adfs' repository = 'https://github.com/snok/django-auth-adfs' documentation = 'https://django-auth-adfs.readthedocs.io/en/latest'