From b2d9bf1c6f6a86b0041090d2d13a8fc088ba731b Mon Sep 17 00:00:00 2001 From: Lennart Reiher Date: Tue, 30 May 2023 12:39:06 +0200 Subject: [PATCH] rename pip package to docker-run-cli --- README.md | 8 ++++---- docker-run/pyproject.toml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index bc0b8a7..fcbe21e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

- +

@@ -54,7 +54,7 @@ Unlike with `docker run`, you can also set the Docker image and command via `--i ## Installation ```bash -pip install docker-run +pip install docker-run-cli # (optional) shell auto-completion source $(activate-python-docker-run-shell-completion 2> /dev/null) @@ -99,10 +99,10 @@ optional arguments: ```bash # install specific plugin -pip install docker-run[] +pip install docker-run-cli[] # install all plugins -pip install docker-run[plugins] +pip install docker-run-cli[plugins] ``` | Plugin | Description | diff --git a/docker-run/pyproject.toml b/docker-run/pyproject.toml index c62df34..a3ff489 100644 --- a/docker-run/pyproject.toml +++ b/docker-run/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools>=61.0.0", "wheel"] build-backend = "setuptools.build_meta" [project] -name = "docker-run" +name = "docker-run-cli" version = "0.9.0" description = "'docker run' and 'docker exec' with useful defaults" license = {file = "LICENSE"} @@ -29,8 +29,8 @@ requires-python = ">=3.7" [project.optional-dependencies] dev = ["build", "twine"] docker-ros = ["docker-run-docker-ros"] -plugins = ["docker-run[docker-ros]"] -all = ["docker-run[plugins]", "docker-run[dev]"] +plugins = ["docker-run-cli[docker-ros]"] +all = ["docker-run-cli[plugins]", "docker-run-cli[dev]"] [project.urls] "Repository" = "https://github.com/ika-rwth-aachen/docker-run"