How to check if a path is a pip installable package in python 3
I'd like to know if a local path is a pip installable package meaning that I can execute pip install my_path with it. Is there an easy way to do that ?
Hence my_path could be a wheel path, a folder with a setup.py file etc.