1
0
Fork 0

Added module to load virtualenvwrapper

pull/136/head
Sebastian Wiesner 13 years ago
parent 906d6c8d15
commit 6a22387e7f

@ -0,0 +1,13 @@
virtualenvwrapper
=================
Enables [virtualenvwrapper][venvwrapper] if installed.
[virtualenvwrapper][venvwrapper] is a frontend to [virtualenv][venv] which
provides convenient shell functions to create, switch and manage virtualenvs.
This module will source the virtualenvwrapper initialization script, if
[virtualenvwrapper][venvwrapper] is installed.
[venvwrapper]: http://www.doughellmann.com/projects/virtualenvwrapper/
[venv]: http://pypi.python.org/pypi/virtualenv

@ -0,0 +1,13 @@
#
# Enables virtualenvwrapper if available.
#
# virtualenvwrapper is a utility to easily create, switch and manage Python
# virtualenvs. See http://www.doughellmann.com/projects/virtualenvwrapper/
#
# Authors:
# Sebastian Wiesner <lunaryorn@googlemail.com>
#
if (( $+commands[virtualenvwrapper.sh] )); then
source virtualenvwrapper.sh
fi
Loading…
Cancel
Save