Creating a setup.py File
Explore how to create a basic setup.py file for Python packages, test it locally or in a virtual environment, and understand the differences between setuptools and distutils to prepare your package for PyPI registration.
We'll cover the following...
We'll cover the following...
We will start out by creating a super simple setup.py script. Here’s a bare-bones one:
This is something you might write for a package internally. To ...