1# This is too much for a grepper answer, so here is a link to the tutorial:
2# https://towardsdatascience.com/how-to-build-your-first-python-package-6a00b02635c9
11. Create files:
2 __init__.py setup.py README.md LICENSE
32. Check for setuptools and wheel:
4 pip install --user --upgrade setuptools wheel
53. Generate package:
6 py setup.py sdist bdist_wheel
74. Upload to pip:
8 twine upload dist/*