From 5648aad04dd658263727fd47ed0f8e55ba372fa4 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 20 Sep 2025 14:52:52 -0500 Subject: [PATCH] fix: fix config extension entry point per upstream changes --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 21f6976..c0f4851 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ name = "WuttaPOS" version = "0.2.1" description = "Pythonic Point of Sale System" readme = "README.md" -authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] +authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}] license = {text = "GNU GPL v3+"} classifiers = [ "Development Status :: 3 - Alpha", @@ -41,13 +41,14 @@ docs = ["Sphinx", "furo"] wuttapos = "wuttapos.commands:wuttapos_typer" -[project.entry-points."rattail.config.extensions"] +[project.entry-points."wutta.config.extensions"] wuttapos = "wuttapos.config:WuttaConfigExtension" [project.urls] Homepage = "https://rattailproject.org" Repository = "https://forgejo.wuttaproject.org/rattail/wuttapos" +Issues = "https://forgejo.wuttaproject.org/rattail/wuttapos/issues" Changelog = "https://forgejo.wuttaproject.org/rattail/wuttapos/src/branch/master/CHANGELOG.md"