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