mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
15 lines
286 B
Python
15 lines
286 B
Python
from fabric.api import local, run, lcd, cd, env
|
|
|
|
def make():
|
|
local('python setup.py build_ext --inplace')
|
|
|
|
def clean():
|
|
local('python setup.py clean --all')
|
|
|
|
def docs():
|
|
with lcd('docs'):
|
|
local('sphinx-build -b html . ./_build')
|
|
|
|
def test():
|
|
local('py.test -x')
|