Skip to content

Commit 1cb4d79

Browse files
remove dates from tutorials
1 parent b6c82da commit 1cb4d79

10 files changed

+0
-10
lines changed

tutorials/add-license-coc.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-02
54
---
65

76
# Add a `LICENSE` & `CODE_OF_CONDUCT` to your Python package

tutorials/add-readme.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-03
54
---
65

76
# Add a README file to your Python package

tutorials/command-line-reference.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-04
54
---
65

76
# Command Line Reference Guide

tutorials/get-to-know-hatch.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-05
54
---
65

76
# Get to Know Hatch

tutorials/installable-code.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-01
54
---
65

76
# Make your Python code installable

tutorials/intro.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
:og:description: This page outlines the key steps to create, document, and share a high-quality scientific Python package. Here you will also get an overview of the pyOpenSci packaging guide and what you’ll learn.
33
:og:title: Python packaging 101
4-
date: 1970-01-05
54
---
65

76
(packaging-101)=

tutorials/publish-conda-forge.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-06
54
---
65

76
# Publish your Python package that is on PyPI to conda-forge

tutorials/publish-pypi.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-07
54
---
65

76
# Publish your Python package to PyPI

tutorials/pyproject-toml.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-08
54
---
65

76
# Make your Python package PyPI ready - pyproject.toml

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
: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
4-
date: 1970-01-09
54
---
65

76
# Using Hatch to Migrate setup.py to a pyproject.toml

0 commit comments

Comments
 (0)