2014-09-11 10:28:38 +00:00
|
|
|
import json
|
|
|
|
|
2014-07-05 18:49:34 +00:00
|
|
|
from fabric.api import local, run, lcd, cd, env
|
|
|
|
|
|
|
|
def make():
|
|
|
|
local('python setup.py build_ext --inplace')
|
|
|
|
|
2014-09-11 10:28:38 +00:00
|
|
|
|
2014-07-05 18:49:34 +00:00
|
|
|
def clean():
|
|
|
|
local('python setup.py clean --all')
|
|
|
|
|
2014-09-11 10:28:38 +00:00
|
|
|
|
2014-08-20 15:02:32 +00:00
|
|
|
def docs():
|
2014-09-11 10:28:38 +00:00
|
|
|
local('sphinx-build -b html docs/ .')
|
|
|
|
|
2014-08-20 15:02:32 +00:00
|
|
|
|
2014-07-05 18:49:34 +00:00
|
|
|
def test():
|
|
|
|
local('py.test -x')
|
2014-09-11 10:28:38 +00:00
|
|
|
|
|
|
|
def sbox():
|
|
|
|
local('python sb_setup.py build_ext --inplace')
|
|
|
|
|
|
|
|
def sbclean():
|
|
|
|
local('python sb_setup.py clean --all')
|
|
|
|
|