From f066f6c2c1466ddff38eb219aa47ad5109a17ec3 Mon Sep 17 00:00:00 2001 From: Arijit Basu Date: Sat, 21 Nov 2020 09:57:40 +0530 Subject: [PATCH] Add more metadata --- enumatch/__init__.py | 2 +- pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) 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"