Python Wheel Package Deployment Using Adobe Pipelines.
python ado_wheel_pkg
python -m pip install --user --upgrade setuptools wheel
python setup.py sdist bdist_wheel
pip install ado_wheel_pkg-0.0.9-py3-none-any.whl
`pip list'
pip install --force-reinstall ado_wheel_pkg-0.0.9-py3-none-any.whl
from ado_wheel_pkg import calc
print(calc.addition(1,2))