From 2177f1997497cb3560ff14841b3b899836f01d93 Mon Sep 17 00:00:00 2001 From: slashtechno <77907286+slashtechno@users.noreply.github.com> Date: Mon, 3 Jun 2024 13:23:33 -0500 Subject: [PATCH] chore: Update version to 0.3.0 and add classifiers to pyproject.toml --- pyproject.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fd0c894..b69729b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,18 @@ +# I think PDM uses a standard pyproject.toml file so it might be a good idea to eventually migrate to that +# https://pdm-project.org/ [tool.poetry] name = "llmail" -version = "0.2.5" +version = "0.3.0" description = "Interact with LLMs via email" authors = ["slashtechno <77907286+slashtechno@users.noreply.github.com>"] repository = "https://github.com/slashtechno/llmail" keywords = ["llm", "email", "ai", "openai"] license = "GNU Affero General Public License v3" readme = "README.md" +classifiers = [ +"License :: OSI Approved :: GNU Affero General Public License v3", +"Programming Language :: Python", +] [tool.poetry.dependencies] python = ">=3.10.0,<4.0.0"