From d3adb8c1aa258c0f9d712e548c553e342e5aa142 Mon Sep 17 00:00:00 2001 From: Diego Jorquera <49794243+tapdiego-amzn@users.noreply.github.com> Date: Mon, 8 Jan 2024 10:37:29 -0800 Subject: [PATCH] Fix license classifier in pyproject.toml Project is licensed as MPL-2.0 but a MIT license classifier is being used, resulting in the wrong license being displayed on PyPI. Changing classifier to the correct one for the actual project license. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3d782220..2edb64fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Development Status :: 5 - Production/Stable", "Framework :: Pytest", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", + "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", "Natural Language :: English", "Operating System :: POSIX", "Operating System :: Microsoft :: Windows",