open-source

HowTo

How to publish your Python Package to pip

Here is a step-by-step guide to follow to publish your Python package to PyPI, so anyone who is interested can download your package using the 'pip install <your-package>' command. By making it available on PyPI, you are essentially making your library open source. This article will not focus on developing the python package, but it will be a guide to publish the package in PyPI.

Read