Search⌘ K
AI Features

What's this chapter about?

Explore the process of preparing your Python package for distribution by creating a setup.py file and learning how to upload your package to the Python Packaging Index (PyPI) with setuptools and distutils. This lesson helps you share your code effectively.

We'll cover the following...

We created a package called mymath in the previous chapter. In this chapter, we will learn how to share it on the Python Packaging Index (PyPI). To do that, we ...