From 08b77a0614f5ac18dc32aeab13011f7deb0fea8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramiro=20G=C3=B3mez?= Date: Fri, 28 Jun 2024 00:00:13 +0200 Subject: [PATCH] Improve metadata and finish release task. --- pyproject.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 859a458..84bf438 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,11 +5,11 @@ build-backend = "hatchling.build" [project] name = "charla" dynamic = ["version"] -description = 'A chat application that uses local language models.' +description = 'A terminal based chat application that works with local language models.' readme = "README.md" requires-python = ">=3.10" license = "MIT" -keywords = [] +keywords = [chat-client, cli, llm, chatbot, ollama, terminal] authors = [ { name = "Ramiro Gómez", email = "code@ramiro.org" }, ] @@ -49,8 +49,9 @@ type_check = "mypy --install-types --non-interactive {args:charla tests}" release = [ "hatch test", "hatch build --clean", - "echo hatch publish", - "echo git tag -a $(hatch version) -m \"Create version $(hatch version)\"", + "hatch publish", + "git tag -a $(hatch version) -m \"Create version $(hatch version)\"", + "git push --tags" ] [tool.coverage.run]