Files
tablib/fabfile.py
T
2010-10-08 11:50:43 -04:00

15 lines
338 B
Python

import os
from fabric.api import *
def scrub():
""" Death to the bytecode! """
local('rm -fr dist build')
local("find . -name \"*.pyc\" -exec rm '{}' ';'")
def docs():
"""Build docs."""
os.system('make html')
os.system('cd _build/html')
os.system('git commit -am \'documentation update\'')
os.system('git push origin gh-pages')