[chore] Fixed pyproject deprecation warning.

Dynamic entrypoints in `setup.py` should now explicitly be listed as
`dynamic` under the `project` section.
This commit is contained in:
Fabio Manganiello 2024-11-17 00:50:05 +01:00
parent 225761c839
commit 171efec739
Signed by untrusted user: blacklight
GPG key ID: D90FBA7F76362774

View file

@ -1,7 +1,7 @@
[project]
name = "platypush"
description = "A general-purpose framework for automation"
dynamic = ["version", "dependencies", "optional-dependencies"]
dynamic = ["version", "dependencies", "optional-dependencies", "entry-points"]
authors = [
{name = "Fabio Manganiello", email = "fabio@manganiello.tech"},
]