You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/events/2024-06-25-create-your-first-python-package-scipy-2024.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
layout: single
3
-
title: "Workshop: pyOpenSci @ SciPy 2024 -- Create Your First Python Package"
3
+
title: "Workshop: pyOpenSci @ SciPy 2024--Create your first Python package"
4
4
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!"
@@ -133,15 +133,15 @@ You will leave this tutorial understanding how to:
133
133
134
134
## Hatch & Python
135
135
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.**
137
137
138
138
## Install Hatch
139
139
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/)._
141
141
142
142
### For Mac users
143
143
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)._
145
145
146
146
1. In your browser, download the `.pkg` file: [hatch-universal.pkg](https://github.com/pypa/hatch/releases/latest/download/hatch-universal.pkg)
147
147
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
151
151
152
152
### For Linux users
153
153
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_
155
155
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/):
157
157
158
158
```bash
159
159
# 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
164
164
165
165
### For Windows users
166
166
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)._
168
168
169
169
1. In your browser, download the `.msi` file: [hatch-x64.msi](https://github.com/pypa/hatch/releases/latest/download/hatch-x64.msi)
170
170
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
178
178
configuration allows you to specify things like the default name and email to
179
179
use in your package’s metadata. If you don’t configure Hatch, you can always
180
180
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!)
182
182
183
183
Hatch stores your configuration information in a `config.toml` file.
0 commit comments