From 7136f8c0fd2365ba93eb95354eb71b4384bb12e6 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Mon, 7 Sep 2026 19:32:15 -0700 Subject: [PATCH] fix: entry point should reference package module hermes_meshtastic not function --- plugin/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/pyproject.toml b/plugin/pyproject.toml index cac8707..68b02b0 100644 --- a/plugin/pyproject.toml +++ b/plugin/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "hermes-meshtastic" -version = "0.1.0" +version = "0.1.1" description = "Meshtastic LoRa mesh gateway adapter plugin for Hermes Agent" readme = "README.md" requires-python = ">=3.10" @@ -19,7 +19,7 @@ dependencies = [ ] [project.entry-points."hermes_agent.plugins"] -meshtastic-platform = "hermes_meshtastic:register" +meshtastic-platform = "hermes_meshtastic" [tool.hatch.build.targets.wheel] packages = ["hermes_meshtastic"]