Kenneth Reitz
Kenneth Reitz

Reputation: 8866

Getting a Python library listed in easy_setup and pip?

Every Python developer is familiar with easy_install and setup tools.

If I want to install a library that's well known, all I have to do is this:

sudo easy_setup install django

Now I have a library that I've written and would love to see widespread. How do you get added to this library list?

Upvotes: 11

Views: 867

Answers (1)

John Millikin
John Millikin

Reputation: 201056

Upload it to PyPI. See the tutorial.

Upvotes: 9

Related Questions