From fce9833d65a68f5ce17a132065971ecdb1cea414 Mon Sep 17 00:00:00 2001 From: Zain Patel Date: Sun, 7 Feb 2021 18:12:09 +0000 Subject: [PATCH] Add package metadata for PyPi (#2) --- kedro_local_notify/__init__.py | 2 +- pyproject.toml | 11 ++++++++++- tests/test_kedro_notify.py | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) 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"