storborg / python-packaging

Tutorial on how to structure Python packages
http://www.scotttorborg.com/python-packaging/
438 stars 133 forks source link

Publishing on PyPi register and upload methods deprecated/not-recommended #27

Open GanadiniAkshay opened 7 years ago

GanadiniAkshay commented 7 years ago

python3 setup.py register
is deprecated and as per the official guide is not recommended due to security issues. Similar issues with python2 setup.py upload

The recommended way is to use twine to register and upload the package.

GanadiniAkshay commented 7 years ago

created pull request #28

natjms commented 7 years ago

I second this. Using some of the methods provided in this documentation might transmit login information via plain text which could easily get picked up by someone listening.

ACPK commented 6 years ago

This is still an issue...

githubaba commented 6 years ago

Hi !,

Inam different Akshay

On Wed, Mar 14, 2018 at 5:05 PM AK notifications@github.com wrote:

This is still an issue...

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/storborg/python-packaging/issues/27#issuecomment-373215906, or mute the thread https://github.com/notifications/unsubscribe-auth/APYfamYds6l8cCZje2RO8lwBTLON073vks5tebBdgaJpZM4M-z2d .

-- Akshay

natjms commented 6 years ago

It would be wise to do something at least, even if this documentation is no longer being maintained. This tutorial still comes up in search results for "python packaging" and may lead beginner developers down the wrong path.