views:

34

answers:

1

I have a series of python modules I would like to put into a package. I would like to set it up such that anyone interested can just download it and install it (on unix). How can I do this?

+1  A: 

You should use distutils/setuptools to create egg and PyPI to distribute your package.

See according tutorials on packaging and uploading to PyPI:

http://diveintopython3.org/packaging.html

http://wiki.python.org/moin/CheeseShopTutorial

Daniel Kluev