From 171efec739e10576a8d0b2675abebdd240640c9c Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 17 Nov 2024 00:50:05 +0100 Subject: [PATCH] [chore] Fixed pyproject deprecation warning. Dynamic entrypoints in `setup.py` should now explicitly be listed as `dynamic` under the `project` section. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 47228a3a..88041099 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"}, ]