This question is too broad so I will just list my tool chain FWIW.
Editting
emacs + python-mode + flymake + ropemacs.
flymake runs a process as you are editing a file, the process can be anything. I have flymake configured to fire off pyflakes and pep8. So I get indications in the file of pep8 violations, syntax errors, unused imports, variables declared but not used etc.....
rope is handy for jumping around declarations and a little bit of auto complete. It will also show you the docs and function signatures etc....
I'm sure there's similar stuff for vim. And though my one colleague has not managed to get it running, I've been told wingide can use pyflakes and pep8.
Testing
nose + various plugins. In my emacs I bind F7(compile) to run nose, that way I get a buffer where I can jump to the errors and then jump to that line in the source code.
version control
i use mercurial
dependencies
buildout or virtualenv or both. depending on the project. Use what's best for your project. I put up with buildout because I develop fo appengine right now, and I prefer the recipes in buildout for the appengine application structure to the appengine monkey approach, but that's just me.
If I weren't developing for appengine I would probably stick with virtualenv.
continuous integration
jenkins is the easiest I have ever setup. basically it runs the same testsuite that I use on my compile command but also generates a coverage report.
I think being aware of what's out there and being able to morph it all to your needs of the project you are working on is better than looking for a "best of breed" solution, mainly because the best of breed solution just doesn't exist.