Files
tablib/fabfile.py
T
2010-10-08 11:49:53 -04:00

14 lines
299 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\'')