On Sat, Oct 3, 2009 at 11:53 PM, Baiju M <[email protected]> wrote: > http://infinitemonkeycorps.net/docs/pph/ > > It provides a one (long) page guide to publishing your Python source > after coding it, covering version control choices, your hosting options, > producing quality code using Pylint, various kinds of unit and coverage > tests, documenting it using reStructuredText in docstrings and Sphinx, > licensing choices and how to package it and upload it to the Cheeseshop.
Adding to what is written, the following command will create a rough project skeleton using setuptools: $ paster create -t basic_package MyProject (For this to work, one should have PasteScript installed) -srid _______________________________________________ BangPypers mailing list [email protected] http://mail.python.org/mailman/listinfo/bangpypers
