From 8515a9d27f0fb656fadde091590f98f1b399e09f Mon Sep 17 00:00:00 2001 From: Helio Chissini de Castro Date: Wed, 19 Jul 2023 14:23:05 +0200 Subject: [PATCH] fix(project): Fix classifier and naming for metadata Signed-off-by: Helio Chissini de Castro --- pyproject.toml | 4 ++-- src/orthw/__version__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 231a476..6f9c45c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "orthw" -version = "0.5" +version = "0.5.1" description = "orthw is a python app designed to simplify and speed up common tasks performed when processing ort scan results. It supports a number of commands, which can be run in the terminal." authors = ["Helio Chissini de Castro , Frank Viernau "] maintainers = ["Helio Chissini de Castro , Frank Viernau "] @@ -13,7 +13,7 @@ license = "Apache-2.0" packages = [ { include = "orthw", from = "src" } ] keywords = ["ort", "orthw", "compliance", "automation"] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 3 - Alpha", "Environment :: Console", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", diff --git a/src/orthw/__version__.py b/src/orthw/__version__.py index 3396f74..3062850 100644 --- a/src/orthw/__version__.py +++ b/src/orthw/__version__.py @@ -30,7 +30,7 @@ version: Callable[[str], str] = metadata.version try: - __version__ = version("otto") + __version__ = version("orthw") except metadata.PackageNotFoundError: # We are running from a git checkout, so we don't have metada from pathlib import Path