The setuptools package provides a method to easily download, build, install, upgrade, and uninstall Python packages
Compile the package:
pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD
Install the package:
pip3 install --no-index --find-links dist setuptools