Fix pyproject project.license deprecation

Deprecation notice:

Please use a simple string containing a SPDX expression for `project.license`.
You can also use `project.license-files`. (Both options available on
setuptools>=77.0.0).

https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license
This commit is contained in:
Jonathan Neidel 2026-02-10 21:26:20 +01:00
parent 778a2de5a0
commit 2301da21b8

View file

@ -36,7 +36,8 @@ classifiers=[
]
authors = [{name="Karl Voit", email="tools@Karl-Voit.at"}]
license = {file = "LICENSE.txt"}
license = "GPL-3.0-or-later"
license-files = ["LICENSE.txt"]
requires-python = ">=3.10" # see https://devguide.python.org/versions/
dependencies = [
"clint>=0.5.1",