How to make a Python script Pip-installable
As Python developers, we’ve all used pip to install applications, but speaking to other Python developers, it’s not always clear how to make your own application/script pip-installable. If you want to automatically publish your Python to PyPi, check out makepip automation tip Steps involved Create a python script, or application Add and configure a setup file Build your new Pip Package Locally Upload them both to the Python Package Index (PyPi) So let’s run through these 4 steps to get you going....