From ad892504d28967ec9d994c71b38199786141be2f Mon Sep 17 00:00:00 2001 From: Kimmo Huoman Date: Fri, 27 Sep 2024 19:33:17 +0300 Subject: [PATCH] Update pycron version to 3.1.1 and metadata - Bump version from 3.1.0 to 3.1.1 in `pyproject.toml`. - Update author email address to include `+pycron` suffix for better identification. - Add homepage and repository URLs to the project metadata for easier accessibility. - Include "cron" as a keyword for improved searchability. --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f84881b..c614b1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,13 @@ [tool.poetry] name = "pycron" -version = "3.1.0" +version = "3.1.1" description = "Simple cron-like parser, which determines if current datetime matches conditions." -authors = ["Kimmo Huoman "] +authors = ["Kimmo Huoman "] license = "MIT" readme = "README.md" +homepage = "https://github.com/kipe/pycron" +repository = "https://github.com/kipe/pycron" +keywords = ["cron", "parser"] [tool.poetry.dependencies] python = ">=3.9,<3.13"