diff --git a/kedro_local_notify/__init__.py b/kedro_local_notify/__init__.py index 59ab5eb..561f3f4 100644 --- a/kedro_local_notify/__init__.py +++ b/kedro_local_notify/__init__.py @@ -1,3 +1,3 @@ """kedro-local-notify""" -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/pyproject.toml b/pyproject.toml index 3f3a974..707529a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,17 @@ [tool.poetry] name = "kedro-local-notify" -version = "0.1.0" +version = "0.1.1" description = "A kedro plugin that interacts with your local notifications" +license = "MIT" authors = ["Zain Patel "] +readme = "README.md" +homepage = "https://github.com/mzjp2/kedro-local-notify" +repository = "https://github.com/mzjp2/kedro-local-notify" +keywords = ["kedro", "notification"] +classifiers = [ + "Framework :: Kedro" +] + [tool.poetry.dependencies] python = ">=3.7, <3.9" diff --git a/tests/test_kedro_notify.py b/tests/test_kedro_notify.py index ca62b8a..a3dab4b 100644 --- a/tests/test_kedro_notify.py +++ b/tests/test_kedro_notify.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.1.0" + assert __version__ == "0.1.1"