Can PyPI serve packages directly from GitHub?

96 views Asked by At

Is there any way to link a PyPI repo directly to a GitHub repo so that it makes the latest version of the files available for download instead of uploading the files every time?

1

There are 1 answers

0
davidism On BEST ANSWER

No, PyPI only serves packages uploaded to it. pip can install from other sources than PyPI though:

pip install https://github.com/sopython/sopython-site/tarball/master

pip install git+ssh://[email protected]/sopython/sopython-site@master#egg=sopython-site