Skip to content

Commit 6d99460

Browse files
lwasserkierisi
andauthored
fix: edits from review
Co-authored-by: Jesse Mostipak <[email protected]>
1 parent 4c37114 commit 6d99460

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

_posts/events/2024-06-25-create-your-first-python-package-scipy-2024.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: single
3-
title: "Workshop: pyOpenSci @ SciPy 2024 -- Create Your First Python Package"
3+
title: "Workshop: pyOpenSci @ SciPy 2024--Create your first Python package"
44
excerpt: "Python packaging can be tricky to navigate. pyOpenSci will lead a workshop on creating your first Python package at SciPy 2024. The goal of this workshop is to help scientists learn how to package and make code installable and shareable. Read on to learn more!"
55
author:
66
permalink: /events/create-first-python-package-scipy-2024.html
@@ -133,15 +133,15 @@ You will leave this tutorial understanding how to:
133133

134134
## Hatch & Python
135135

136-
If you already have a working version of Python on your computer, then you are in good shape!**If you don’t have Python installed on your computer, then Hatch will install Python for you when you install it following the instructions below.**
136+
If you already have a working version of Python on your computer, then you are in good shape! **If you don’t have Python installed on your computer, then Hatch will install Python for you when you install it following the instructions below.**
137137

138138
## Install Hatch
139139

140-
_These instructions were adapted from the [Introduction to hatch](https://www.pyopensci.org/python-package-guide/tutorials/get-to-know-hatch.html) section of the [pyOpenSci Python Packaging Guide](https://www.pyopensci.org/python-package-guide/)._
140+
_These instructions were adapted from the [Introduction to Hatch](https://www.pyopensci.org/python-package-guide/tutorials/get-to-know-hatch.html) section of the [pyOpenSci Python Packaging Guide](https://www.pyopensci.org/python-package-guide/)._
141141

142142
### For Mac users
143143

144-
_These instructions are for installing Hatch using the GUI installer. If you’d prefer to use the Command line installer, please see the [Hatch documentation](https://hatch.pypa.io/latest/install/#command-line-installer)._
144+
_These instructions are for installing Hatch using the GUI installer. If you’d prefer to use the command line installer, please see the [Hatch documentation](https://hatch.pypa.io/latest/install/#command-line-installer)._
145145

146146
1. In your browser, download the `.pkg` file: [hatch-universal.pkg](https://github.com/pypa/hatch/releases/latest/download/hatch-universal.pkg)
147147
2. Run the downloaded file and follow the on-screen instructions to install Hatch.
@@ -151,9 +151,9 @@ _These instructions are for installing Hatch using the GUI installer. If you’d
151151

152152
### For Linux users
153153

154-
_For linux users, the easiest way to install Hatch is to use pipx which can be installed using apt install. Note: if you prefer to use a tool other than pipx, please refer to the [Hatch documentation](https://hatch.pypa.io/latest/) for more information_
154+
_For Linux users, the easiest way to install Hatch is to use pipx which can be installed using apt install. Note: if you prefer to use a tool other than pipx, please refer to the [Hatch documentation](https://hatch.pypa.io/latest/) for more information_
155155

156-
* Install hatch from the command line using [pipx](https://pipx.pypa.io/stable/):
156+
* Install Hatch from the command line using [pipx](https://pipx.pypa.io/stable/):
157157

158158
```bash
159159
# First install pipx using apt install
@@ -164,7 +164,7 @@ _For linux users, the easiest way to install Hatch is to use pipx which can be i
164164

165165
### For Windows users
166166

167-
_These instructions are for installing Hatch using the GUI installer. If you’d prefer to use the Command line installer, please see the [Hatch documentation](https://hatch.pypa.io/latest/install/#command-line-installer_1)._
167+
_These instructions are for installing Hatch using the GUI installer. If you’d prefer to use the command line installer, please see the [Hatch documentation](https://hatch.pypa.io/latest/install/#command-line-installer_1)._
168168

169169
1. In your browser, download the `.msi` file: [hatch-x64.msi](https://github.com/pypa/hatch/releases/latest/download/hatch-x64.msi)
170170
2. Run your downloaded file and follow the on-screen instructions.
@@ -178,7 +178,7 @@ After installing Hatch, it’s useful to customize the Hatch configuration. The
178178
configuration allows you to specify things like the default name and email to
179179
use in your package’s metadata. If you don’t configure Hatch, you can always
180180
edit files later! However your Hatch package outputs might look a bit different
181-
than the ones in the workshop. (This is ok!)
181+
than the ones in the workshop. (This is OK!)
182182

183183
Hatch stores your configuration information in a `config.toml` file.
184184

0 commit comments

Comments
 (0)