From ef64213c24ddc8f844495847d8dbe11bb86a093d Mon Sep 17 00:00:00 2001 From: Maximilian Wirtz Date: Wed, 24 Jan 2024 16:41:11 +0100 Subject: [PATCH] Use proper SPDX identifier BSD is ambiguous. There are several BSD versions and flavours out there (see https://spdx.org/licenses/). Based on the `LICENSE.rst` I think it is "BSD 2-Clause "Simplified" License". --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 54b2465..0834d25 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ setuptools.setup( author='Plone Foundation', author_email='plone-developers@lists.sourceforge.net', url='https://github.com/collective/icalendar', - license='BSD', + license='BSD-2-Clause', packages=setuptools.find_namespace_packages('src', exclude=["icalendar.fuzzing"]), package_dir={'': 'src'}, include_package_data=True,