From dc505d6552fc5b54c9386465dde9460b58b0f964 Mon Sep 17 00:00:00 2001 From: HideBa Date: Sun, 4 Feb 2024 15:54:27 +0100 Subject: [PATCH] chore: upgrade --- README.md | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e075276..d5f5e61 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # AHN CLI [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) -[![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-green.svg)](https://github.com/HideBa/ahn-cli/releases/tag/v0.1.0) +[![Version: 1.0.0](https://img.shields.io/badge/Version-0.1.0-green.svg)](https://github.com/HideBa/ahn-cli/releases/tag/v0.1.0) [![CICD Status: Passing](https://img.shields.io/badge/CICD-Passing-brightgreen.svg)](https://github.com/HideBa/ahn-cli/actions) ## Description diff --git a/pyproject.toml b/pyproject.toml index 7327340..a3e8aba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,13 @@ [tool.poetry] name = "ahn_cli" -version = "0.1.0" +version = "0.1.1" description = "" authors = ["HideBa "] license = "MIT" readme = "README.md" packages = [{ include = "ahn_cli", from = "./" }] -include = ["ahn_cli/*", "ahn_cli/**/*"] +include = ["ahn_cli/**/*", "README.md", "pyproject.toml", "LICENSE"] +exclude = ["ahn_cli/test/*"] [tool.poetry.scripts] ahn_cli = "ahn_cli.main:main"