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