Setting up a private pypi package?

I am planning to create a python package that can only be used by the command in my univ.I can host this on my university server. Is there any link, guide or tutorial out there to do the same. I have developed package bundles before but have been pushed into public space. The idea is to put the code on github (initiated by my univ) and push the pip package to the git repo.

+3


source to share


1 answer


Perhaps just pointing out the dependencies (requirements.txt / setup.py) of the packages that depend on that private package with this private github refactoring url is enough. Add a line like this to your requirements.txt



-e git+ssh://git@github.com/example/example.git#egg=example

      

+1


source







All Articles