From 2e3163fef86ef9eb775f006c662d7c990574066b Mon Sep 17 00:00:00 2001 From: Sijis Aviles Date: Tue, 24 Jan 2023 22:15:12 -0600 Subject: [PATCH] fix: module naming (#3) This should address an error in the entrypoint definition. --- setup.py | 2 +- src/helloworld/__init__.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 838205c..316c27b 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ include_package_data=True, entry_points={ "errbot.plugins": [ - "helloworld = helloWorld:HelloWorld", + "helloworld = helloworld:HelloWorld", ] }, ) diff --git a/src/helloworld/__init__.py b/src/helloworld/__init__.py index e69de29..d9b6531 100644 --- a/src/helloworld/__init__.py +++ b/src/helloworld/__init__.py @@ -0,0 +1 @@ +from .helloWorld import HelloWorld