diff --git a/enumatch/__init__.py b/enumatch/__init__.py index 0734ade..a490541 100644 --- a/enumatch/__init__.py +++ b/enumatch/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.3" +__version__ = "0.1.4" # Also update pyproject.toml from typing import Dict, TypeVar, Union, Any, Iterator from enum import Enum diff --git a/pyproject.toml b/pyproject.toml index 5fb1e27..678c7f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,10 @@ [tool.poetry] name = "enumatch" -version = "0.1.3" +version = "0.1.4" # Also update __init__.py description = "Strictly match all the possibilities of an enum" +license = "MIT" +keywords = ["enum", "match", "functional"] +homepage = "https://github.com/sayanarijit/enumatch" authors = ["Arijit Basu "] readme = "README.md"