Skip to content

Commit

Permalink
rename pip package to docker-run-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
lreiher committed May 30, 2023
1 parent d16d016 commit b2d9bf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<p align="center">
<img src="https://img.shields.io/github/v/release/ika-rwth-aachen/docker-run"/></a>
<img src="https://img.shields.io/github/license/ika-rwth-aachen/docker-run"/>
<a href="https://pypi.org/project/docker-run/"><img src="https://img.shields.io/pypi/dm/docker-run?color=blue&label=PyPI%20downloads"/>
<a href="https://pypi.org/project/docker-run-cli/"><img src="https://img.shields.io/pypi/dm/docker-run-cli?color=blue&label=PyPI%20downloads"/>
<a href="https://github.com/ika-rwth-aachen/docker-run"><img src="https://img.shields.io/github/stars/ika-rwth-aachen/docker-run?style=social"/></a>
</p>

Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -99,10 +99,10 @@ optional arguments:

```bash
# install specific plugin <PLUGIN_NAME>
pip install docker-run[<PLUGIN_NAME>]
pip install docker-run-cli[<PLUGIN_NAME>]

# install all plugins
pip install docker-run[plugins]
pip install docker-run-cli[plugins]
```

| Plugin | Description |
Expand Down
6 changes: 3 additions & 3 deletions docker-run/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand All @@ -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"
Expand Down

0 comments on commit b2d9bf1

Please sign in to comment.