mirror of
https://github.com/novoid/filetags.git
synced 2026-02-16 14:04:14 +00:00
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:
parent
778a2de5a0
commit
2301da21b8
1 changed files with 2 additions and 1 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue