======================================================
cp.buildout_postgres:root - Set up a postgres
======================================================

	>>> import commands
	>>> boilerplate = \
	... """
	... [buildout]
	... parts = postgres
	...
	... [postgres]
	... 
	... """
	>>> print commands.getoutput('buildout')
	>>> ls("parts")
	d postgres

