Skip to content

Instantly share code, notes, and snippets.

@jbonfante
Forked from joshkehn/fabfile.py
Created February 24, 2014 18:19
Show Gist options
  • Save jbonfante/9193792 to your computer and use it in GitHub Desktop.
Save jbonfante/9193792 to your computer and use it in GitHub Desktop.
from fabric.api import local
import pip
def freeze ():
local("pip freeze > requirements.txt")
local("git add requirements.txt")
local("git commit -v")
def upgrade ():
for dist in pip.get_installed_distributions():
local("pip install --upgrade {0}".format(dist.project_name))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment