From 23a7b0d861b4abc57284b40cbf1bda83f45e324a Mon Sep 17 00:00:00 2001 From: mosfet80 <10235105+mosfet80@users.noreply.github.com> Date: Wed, 23 Jul 2025 22:54:39 +0200 Subject: [PATCH 1/4] fix setuptools deprecation FIX: #SetuptoolsDeprecationWarning: License classifiers are deprecated. !! --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5fd3c3b..84fb0a6 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) From 7f545aa21096391784972e846750075ba3a2e170 Mon Sep 17 00:00:00 2001 From: mosfet80 <10235105+mosfet80@users.noreply.github.com> Date: Thu, 24 Jul 2025 18:06:43 +0200 Subject: [PATCH 2/4] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 84fb0a6..4f6509d 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], - license='BSD', + license = 'BSD', }) setup(**d) From d7eb3413be929d9a035d50c9977cd8a49d29fe8f Mon Sep 17 00:00:00 2001 From: Alejandro Hernandez Cordero Date: Fri, 3 Oct 2025 10:39:51 +0200 Subject: [PATCH 3/4] make linters happy Signed-off-by: Alejandro Hernandez Cordero --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4f6509d..84fb0a6 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], - license = 'BSD', + license='BSD', }) setup(**d) From e04cf36cdbfdf1f77d97d254e69a728568c5abdd Mon Sep 17 00:00:00 2001 From: Alejandro Hernandez Cordero Date: Fri, 3 Oct 2025 16:19:56 +0200 Subject: [PATCH 4/4] make linters happy Signed-off-by: Alejandro Hernandez Cordero --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 84fb0a6..0a9e28b 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules', ], - license='BSD', + license: ['BSD'], }) setup(**d)