Distutils
Distutils is a legacy Python standard library module for distributing Python modules. It provides a framework and command-line utilities to build, package, and install modules and extensions.
Core API resides in distutils.core; the setup() function is used in a setup script (setup.py) to declare
The typical workflow includes creating a setup.py, defining metadata and build options, and invoking commands such
Distutils is the foundation for many packaging tools. setuptools extends distutils with additional commands and features,
In modern Python, distutils has been deprecated and was removed from the standard library; new projects are
In practice, distutils remains in historical code and is sometimes encountered in legacy projects, but it is