Is it possible to simply update the data in the pypi index without updating the package?

I am developing a python package in bitbucket and want to index it in pypi. The operations that I perform whenever I have a new download seem rather inefficient, which raises this question.

  • I downloaded the new package in pypi using python setup.py register sdist upload
  • Then I set up a new package, which will also appear in bitbucket downloads.
  • Now I want to update the pypi download url to point to the bitpack.

Can (3) be done after I did (1), (2) without recreating the package?
What is the correct way to do this without creating a package twice?

+3
source share
1 answer

PyPi python setup.py register, setup.py, URL- , .

, , easy_install, pip .., , URL- ( ), .

, PyPi , , , setup.py.

+1

All Articles