This folder contains hooks for virtualenvwrapper
If you are a Python developer, and haven't installed virtualenv already, go ahead install both virtualenv & virtualenvwrapper.
- Go back to the directory you were before activating virtualenv upon deactivate call
- Install set of highly suggested helper libraries on virtual environment creation
- pep8 - Confirm to PEP8
- pyflakes - Checks Python source files for errors.
- nose - For unit tests
- coverage - Code coverage measurement
- ipdb - Ipython PDB (Debugger)
- ipython - Ipython interactive python shell
- sphinx - Documentation generator
- pastescript - Packaging helpers
- q - better debugging output
- Pycco - Document your code in markdown syntax (Not same as API doc, nor as Sphinx approach)
- autopep8 - automatically formats Python code to conform to the PEP 8
copy all the files in this directory into your virtaulenvwrapper $WORKON_HOME
git clone https://gist.github.com/kra3/6224580
cp -f 6224580/* $WORKON_HOME
rm -rf 6224580