diff --git a/README.md b/README.md index 2323e0b..73c88e1 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,13 @@ Install this tool using `pip`: ```bash pip install devhub-cli ``` + +Or just install and execute via `uvx` + +``` +uvx devhub-cli +``` + ## Usage For help, run: @@ -24,6 +31,11 @@ You can also use: python -m devhub --help ``` +Via `uvx` +``` +uvx devhub-cli +``` + ## Theme Commands The DevHub CLI provides powerful theme management capabilities for synchronizing and managing your DevHub theme components locally. @@ -127,3 +139,7 @@ To run the tests: ```bash python -m pytest ``` + +## CLI template + +CLI click template based on https://github.com/simonw/click-app diff --git a/pyproject.toml b/pyproject.toml index 88e051d..163a2d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "devhub-cli" -version = "0.1" +version = "0.1.1" description = "CLI interface to devhub" readme = "README.md" authors = [{name = "Daniel Rust"}] @@ -27,6 +27,7 @@ CI = "https://github.com/devhub/devhub-cli/actions" [project.scripts] devhub = "devhub.cli:cli" +devhub-cli = "devhub.cli:cli" [project.optional-dependencies] test = ["pytest"]