Skip to content

Commit

Permalink
fix(project): Fix classifier and naming for metadata
Browse files Browse the repository at this point in the history
Signed-off-by: Helio Chissini de Castro <heliocastro@gmail.com>
  • Loading branch information
heliocastro committed Jul 19, 2023
1 parent 24ba364 commit 8515a9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <heliocastro@gmail.com>, Frank Viernau <frank_viernau@epam.com>"]
maintainers = ["Helio Chissini de Castro <heliocastro@gmail.com>, Frank Viernau <frank_viernau@epam.com>"]
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/orthw/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8515a9d

Please sign in to comment.