spaCy/fabfile.py

117 lines
2.9 KiB
Python
Raw Normal View History

2015-01-03 13:02:21 +03:00
from fabric.api import local, run, lcd, cd, env
from os.path import exists as file_exists
from fabtools.python import install, is_installed, virtualenv, install_requirements
2015-01-03 13:02:21 +03:00
from os import path
import json
2015-01-03 13:02:21 +03:00
PWD = path.dirname(__file__)
VENV_DIR = path.join(PWD, '.env')
DEV_ENV_DIR = path.join(PWD, '.denv')
def require_dep(name):
local('pip install %s' % name)
def dev():
# Allow this to persist, since we aren't as rigorous about keeping state clean
if not file_exists('.denv'):
local('virtualenv .denv')
with virtualenv(DEV_ENV_DIR):
require_dep('cython')
require_dep('murmurhash')
require_dep('numpy')
local('pip install -r requirements.txt')
2015-01-03 13:02:21 +03:00
def sdist():
if file_exists('dist/'):
local('rm -rf dist/')
local('mkdir dist')
with virtualenv(VENV_DIR):
local('python setup.py sdist')
def publish():
with virtualenv(VENV_DIR):
local('python setup.py register')
local('twine upload dist/*.tar.gz')
def setup():
if file_exists('.env'):
local('rm -rf .env')
local('virtualenv .env')
2015-01-03 15:13:49 +03:00
with virtualenv(VENV_DIR):
local('pip install --upgrade setuptools')
local('pip install murmurhash')
local('pip install numpy')
2015-01-03 13:02:21 +03:00
def install():
with virtualenv(VENV_DIR):
local('pip install dist/*.tar.gz')
local('pip install pytest')
2014-07-05 22:49:34 +04:00
def make():
2015-01-03 13:02:21 +03:00
with virtualenv(VENV_DIR):
with lcd(path.dirname(__file__)):
local('python dev_setup.py build_ext --inplace > /dev/null')
def vmake():
2015-01-03 13:02:21 +03:00
with virtualenv(VENV_DIR):
with lcd(path.dirname(__file__)):
local('python dev_setup.py build_ext --inplace')
def clean():
with lcd(path.dirname(__file__)):
local('python dev_setup.py clean --all')
2014-07-05 22:49:34 +04:00
2015-01-03 13:02:21 +03:00
def test():
with virtualenv(VENV_DIR):
with lcd(path.dirname(__file__)):
local('py.test -x')
2014-07-05 22:49:34 +04:00
def clean():
local('python setup.py clean --all')
def docs():
2014-12-30 15:27:30 +03:00
with lcd('docs'):
local('make html')
def sbox():
local('python sb_setup.py build_ext --inplace')
2015-01-03 13:02:21 +03:00
def sbclean():
local('python sb_setup.py clean --all')
def pos():
2014-11-06 20:44:14 +03:00
local('rm -rf data/en/pos')
local('python tools/train.py pos ~/work_data/docparse/wsj02-21.conll data/en/pos')
local('python tools/tag.py ~/work_data/docparse/wsj22.raw /tmp/tmp')
local('python tools/eval_pos.py ~/work_data/docparse/wsj22.conll /tmp/tmp')
def ner():
local('rm -rf data/en/ner')
2014-11-11 13:10:40 +03:00
local('python tools/train_ner.py ~/work_data/docparse/wsj02-21.conll data/en/ner')
local('python tools/tag_ner.py ~/work_data/docparse/wsj22.raw /tmp/tmp')
2014-11-06 20:44:14 +03:00
local('python tools/eval_ner.py ~/work_data/docparse/wsj22.conll /tmp/tmp | tail')
2014-11-12 15:22:05 +03:00
def conll():
local('rm -rf data/en/ner')
local('python tools/conll03_train.py ~/work_data/ner/conll2003/eng.train data/en/ner/')
local('python tools/conll03_eval.py ~/work_data/ner/conll2003/eng.testa')