I am trying to find out if I can use bintray as python packages repo. I see that bintray does not provide PyPi repo type - https://www.jfrog.com/confluence/display/BT/Supported+Package+Formats.
I am wondering how do I use generic bintray repo to get it working with PIP. When I tried creating a package and version in generic repo, to access it we need to know exact file name. I tried setting PIP_INDEX_URL something like this and it does not work.
https://user:API_KEY@bintray.com/myUser/my-pypi-repo/
I do know that I can download the files to local and install using pip, but that will make managing versions very complex.
Only thing I can do it use 'curl' or 'wget' with exact file path to download. Any suggestions will be of great help.