From 8228a4164fe13fb2d02fe4e03141b23d8a63bf76 Mon Sep 17 00:00:00 2001 From: Leah Wasser Date: Wed, 27 Dec 2023 16:23:36 -0700 Subject: [PATCH] Update tutorials/1-installable-code.md Co-authored-by: Jesse Mostipak --- tutorials/1-installable-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/1-installable-code.md b/tutorials/1-installable-code.md index 276a3671..9c62c58e 100644 --- a/tutorials/1-installable-code.md +++ b/tutorials/1-installable-code.md @@ -15,7 +15,7 @@ does this work on windows and mac? i know it works on mac/linux Diagram showing the basic steps to creating an installable package. There are 4 boxes with arrows pointing towards the right. The boxes read, your code, create package structure, add metadata to pyproject.toml and pip install package. -A basic installable package needs a few things. Code, a specific package structure and a `pyproject.toml` containing your package's name and version. Once you have these items in the correct directory structure, you can pip install your package into any environment on your computer. +A basic installable package needs a few things: code, a specific package structure and a `pyproject.toml` containing your package's name and version. Once you have these items in the correct directory structure, you can pip install your package into any environment on your computer. ::: :::{admonition} Learning Objectives