Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting a Python library listed in easy_setup and pip?

Tags:

python

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?

like image 772
Kenneth Reitz Avatar asked Oct 27 '09 19:10

Kenneth Reitz


1 Answers

Upload it to PyPI. See the tutorial.

like image 135
John Millikin Avatar answered Nov 13 '22 07:11

John Millikin