Skip to content

Commit 97e823f

Browse files
committed
Add: descriptions for each tutorial
1 parent 7a5526b commit 97e823f

9 files changed

+9
-9
lines changed

tutorials/add-license-coc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Placeholder text!!!!
2+
:og:description: Learn how to add a LICENSE and CODE_OF_CONDUCT file to your Python package. This lesson covers choosing a permissive license, placing key files for visibility on GitHub and PyPI, and adopting the Contributor Covenant to support an inclusive community.
33
:og:title: Add a License and Code of Conduct to your python package
44
date: 1970-01-02
55
---

tutorials/add-readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Placeholder text!!!!
2+
:og:description: Learn how to create a clear, effective README file for your Python package. This lesson covers what to include, why each section matters, and how a well-structured README improves usability and discoverability on GitHub and PyPI.
33
:og:title: Add a README file to your Python package
44
date: 1970-01-03
55
---

tutorials/command-line-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Placeholder text!!!!
2+
:og:description: Learn how to add a command-line interface (CLI) to your Python package using the argparse library. This lesson walks you through creating a CLI entry point so users can run your package directly from the terminal.
33
:og:title: Command Line Reference Guide
44
date: 1970-01-04
55
---

tutorials/get-to-know-hatch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Placeholder text!!!!
2+
:og:description: Get started with Hatch, a modern Python packaging tool. This lesson introduces Hatch’s features and shows how it simplifies environment management, project scaffolding, and building your package.
33
:og:title: Get to Know Hatch
44
date: 1970-01-05
55
---

tutorials/installable-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Learn how to make your Python code installable so you can use it across projects.
2+
:og:description: Learn how to make your code installable as a Python package using Hatch. This lesson walks you through structuring your code and configuring pyproject.toml so others can easily install and use your package.
33
:og:title: Make your Python code installable so it can be used across projects
44
date: 1970-01-01
55
---

tutorials/publish-conda-forge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Placeholder text!!!!
2+
:og:description: Learn how to publish your Python package on conda-forge to make it easily installable with conda. This lesson covers the submission process, metadata requirements, and maintaining your feedstock.
33
:og:title: Publish your Python package that is on PyPI to conda-forge
44
date: 1970-01-06
55
---

tutorials/publish-pypi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Placeholder text!!!!
2+
:og:description: Learn how to publish your Python package on PyPI so others can install it using pip. This lesson covers building your package, creating a PyPI account, and uploading your distribution files.
33
:og:title: Publish your Python package to PyPI
44
date: 1970-01-07
55
---

tutorials/pyproject-toml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Placeholder text!!!!
2+
:og:description: The pyproject.toml file is the central configuration file for building and packaging Python projects. This lesson explains key sections like name, version, dependencies, and how they support packaging and distribution. You’ll learn how to set up this file to ensure your package is ready for publishing.
33
:og:title: Make your Python package PyPI ready - pyproject.toml
44
date: 1970-01-08
55
---

tutorials/setup-py-to-pyproject-toml.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
:og:description: Placeholder text!!!!
2+
:og:description: If you’re creating a pure Python project, pyproject.toml is preferred over setup.py for packaging and configuration. Learn how to migrate from the older setup.py format to the modern pyproject.toml file. This lesson walks you through updating your package metadata and build settings to align with current Python packaging standards.
33
:og:title: Using Hatch to Migrate setup.py to a pyproject.toml
44
date: 1970-01-09
55
---

0 commit comments

Comments
 (0)