From d8318aeb5b2c5e31e9f8690b0980fb5cdce6741a Mon Sep 17 00:00:00 2001 From: Rory Yorke Date: Sun, 3 Aug 2025 16:11:41 +0200 Subject: [PATCH] Update license specification to latest packaging standards Fixes two SetuptoolsDeprecationWarnings: - License classifiers are deprecated. - `project.license` as a TOML table is deprecated. --- pyproject.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dea6895f..8ea3e90c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,14 +14,11 @@ description = "A wrapper for the SLICOT control and systems library" readme = "README.rst" authors = [{ name = "Enrico Avventi et al." }] maintainers = [{ name = "Slycot developers", email = "python-control-discuss@lists.sourceforge.net"}] -license = {text = "GPL-2.0 AND BSD-3-Clause"} +license = "GPL-2.0 AND BSD-3-Clause" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "Intended Audience :: Developers", - "License :: OSI Approved", - "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", - "License :: OSI Approved :: BSD License", "Programming Language :: C", "Programming Language :: Fortran", "Programming Language :: Python",