From 2d4ed78baae0a2fbabc63a41f6e884972d003f7a Mon Sep 17 00:00:00 2001 From: Jonathan Chow Date: Sun, 15 Jan 2023 22:11:04 +0000 Subject: [PATCH] Update readme with pip install instruction from PyPI --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index b98be5e..e8d7576 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 ``` \ No newline at end of file