Skip to content

Update readme with pip install instruction from PyPI #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Basic packages containing all the Python dependencies for the Coder Dojo Sessions.

## Installation
You can install the package from PyPI using the following command.

```shell
'pip install "coder-dojo-common-python[games,data]"
```


You can install the package from GitHub using the following command.

Expand Down Expand Up @@ -47,4 +53,9 @@ requests = { version = "^2.28.2", optional = true } # Package added as optional
[tool.poetry.extras]
#...existing extras...
web = ["requesets"] # A new extra 'web'
```

### Build package
```shell
poetry build
```