From e3b02d9a343a39d5aa382ac38520148dbde7008a Mon Sep 17 00:00:00 2001 From: mosfet80 <10235105+mosfet80@users.noreply.github.com> Date: Mon, 6 Oct 2025 10:00:58 +0200 Subject: [PATCH] fix setuptools deprecation (#151) Signed-off-by: Alejandro Hernandez Cordero Co-authored-by: Alejandro Hernandez Cordero (cherry picked from commit 7a013569b355b4b4e04c138dedb075ce4b7bcab1) --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5fd3c3b..0a9e28b 100755 --- a/setup.py +++ b/setup.py @@ -38,10 +38,8 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', - 'License :: OSI Approved :: BSD License', - 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', - 'License :: OSI Approved :: GNU General Public License (GPL)', ], + license: ['BSD'], }) setup(**d)