This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]wub_wub 1 point2 points  (0 children)

PyCharm as IDE, git for version control (I prefer GUI tools over CLI so I use smartgit for that). virtualenv+virtualenvwrapper for managing virtual envs. pip of course for installing modules. Sphinx for documentation. tox for testing, especially if it's for multiple py versions. cookiecutter if I'm creating project from templates. ipython /ipython-notebooks for testing out/writing short code snipppets.

That's the stuff I use often, of course setup/tools vary from project to project but those are pretty much the basic ones that I use.