Heroku: Python dependencies in private repos without storing my password
问题 The Problem My problem is exactly like How do I install in-house requirements for Python Heroku projects? and How to customize pip's requirements.txt in Heroku on deployment?. Namely, I have a private repo from which I need a Python dependency installed into my Heroku app . The canonical answer, given by Heroku's own Kenneth Reitz, is to put something like -e git+https://username:password@github.com/kennethreitz/requests.git@v0.10.0#egg=requests in your requirements.txt file. My security