mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 23:10:17 +00:00
15 lines
338 B
Python
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') |