From 4507c939f04b94b1c7e26e1dd3dee0ef65925cdb Mon Sep 17 00:00:00 2001 From: somebugsyouwinsomebugsyoulose <64988960+somebugsyouwinsomebugsyoulose@users.noreply.github.com> Date: Thu, 18 Mar 2021 21:14:01 -0400 Subject: [PATCH] Corrected license classifer LICENSE file states BSD-licensed code, but classifier contained values that would have people find the package in PyPi under AGPLv3+. (The two license types are incompatible. It's presumed that the author intended BSD license, but sending in a PR to verify. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 24bbb7b..56b33af 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( description='Python client for Intel471', packages=['pyintel471'], classifiers=[ - 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', + 'License :: OSI Approved :: BSD License', 'Development Status :: 3 - Alpha', 'Environment :: Console', 'Operating System :: POSIX :: Linux',