Skip to content

Commit 9fc111a

Browse files
g4brielvslwasser
authored andcommitted
Rename and fix tutorial card titles
1 parent 2021faf commit 9fc111a

8 files changed

+8
-8
lines changed

_tutorials/0-hatch-python-packaging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Add metadata using a pyproject.toml file to your Python package"
2+
title: "0. Get to know Hatch"
33
excerpt: "
44
Hatch is an end-to-end Python packaging and workflow tool. In this tutorial, you will install and learn how to configure Hatch for Python packaging."
55
learning_objectives:

_tutorials/1-what-is-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "What is a Python package"
2+
title: "1. What is a Python package"
33
excerpt: "
44
Learn about what a Python package is and the basic components that make up a Python package."
55
learning_objectives:

_tutorials/2-make-code-installable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Make your Python code installable"
2+
title: "2. Make your Python code installable"
33
excerpt: "
44
Learn how to create the most basic version of a Python package which can then be installed into a Python environment."
55
learning_objectives:

_tutorials/3-publish-to-pypi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Publish your Python package to PyPI"
2+
title: "3. Publish your Python package to PyPI"
33
excerpt: "
44
Learn how to publish your Python package to test.PyPI.org and to PyPI.org."
55
learning_objectives:

_tutorials/4-publish-conda-forge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Publish your Python package to conda forge using grayskull"
2+
title: "4. Publish your Python package to conda forge using grayskull"
33
excerpt: "
44
Learn how to publish your Python package to the conda-forge channel of conda using the grayskull Python package."
55
learning_objectives:

_tutorials/5-add-readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Add a README file to your Python package"
2+
title: "5. Add a README file to your Python package"
33
excerpt: "
44
A README file is often the landing page that a user will use to understand your package. Learn about how to create a useful README file for your Python package."
55
learning_objectives:

_tutorials/6-add-license-code-of-conduct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Add a LICENSE and Code_of_Conduct file to your Python package"
2+
title: "6 . Add a LICENSE and CODE_OF_CONDUCT file to your Python package"
33
excerpt: "
44
License and code of conduct files are important to add to your Python package as they provide instructions for both how users can use your package and also how the community of users should interact with you as a maintainer."
55
learning_objectives:

_tutorials/7-add-metadata-pyproject-toml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Add metadata using a pyproject.toml file to your Python package"
2+
title: "7. Add metadata using a pyproject.toml file to your Python package"
33
excerpt: "
44
To enhance the visibility of your package on PyPI and provide more information about its compatibility with Python versions, project development status, and project maintainers, you should add additional metadata to your pyproject.toml file. This lesson will guide you through the process."
55
learning_objectives:

0 commit comments

Comments
 (0)