Search⌘ K
AI Features

Adding Your Software to The Python Package Index

Understand how to register as a PyPI user, register your software, and upload your Python packages using Distutils commands. This lesson guides you through managing your package releases and creating a PyPI project page.

We'll cover the following...

Uploading software to the Python Package Index is a three step process.

  1. Register yourself
  2. Register your software
  3. Upload the packages you created with setup.py sdist and setup.py bdist_*

To register yourself, go to the PyPI user registration page. Enter your desired ...