From 445a9ac8619ae73713f421bd4c97a9dd836dbadd Mon Sep 17 00:00:00 2001 From: dormant-user Date: Wed, 27 Nov 2024 15:01:11 -0600 Subject: [PATCH] Release `v0.1.0` --- README.md | 8 +++++++- pyudisk/__init__.py | 2 +- pyudisk/util.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 143a15f..0eeab84 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,13 @@ PyUdisk is a wrapper around the `udisksctl` command-line tool to generate a comp - Install `python` [3.10] or [3.11] - Use a dedicated [virtual environment] -```bash +For monitoring and reporting, use +```shell +pip install PyUdisk[standard] +``` + +For basic functionality, use +```shell pip install PyUdisk ``` diff --git a/pyudisk/__init__.py b/pyudisk/__init__.py index 740c418..7f3d21b 100644 --- a/pyudisk/__init__.py +++ b/pyudisk/__init__.py @@ -7,7 +7,7 @@ from .main import EnvConfig, generate_report, monitor, smart_metrics # noqa: F401 -version = "0.0.3" +version = "0.1.0" @click.command() diff --git a/pyudisk/util.py b/pyudisk/util.py index c6959f7..34121c1 100644 --- a/pyudisk/util.py +++ b/pyudisk/util.py @@ -60,4 +60,4 @@ def size_converter(byte_size: int | float) -> str: def standard() -> NoReturn: """Raises environment error to install standard package.""" - raise EnvironmentError("For full usage, run 'pip install PyUdisk[standard]'") + raise NotImplementedError("\n\tFor full usage, run 'pip install PyUdisk[standard]'")