2018-06-02 18:10:15 +03:00
|
|
|
SHELL := /bin/bash
|
2020-02-26 22:59:10 +03:00
|
|
|
PYVER := 3.6
|
|
|
|
VENV := ./env$(PYVER)
|
|
|
|
|
2020-03-04 21:28:16 +03:00
|
|
|
version := $(shell "bin/get-version.sh")
|
2018-06-02 18:10:15 +03:00
|
|
|
|
2020-03-04 21:28:16 +03:00
|
|
|
dist/spacy-$(version).pex : wheelhouse/spacy-$(version).stamp
|
2020-07-20 15:58:04 +03:00
|
|
|
$(VENV)/bin/pex -f ./wheelhouse --no-index --disable-cache -m spacy -o $@ spacy==$(version) spacy-lookups-data jieba pkuseg==0.0.25 sudachipy sudachidict_core
|
2020-03-04 21:28:16 +03:00
|
|
|
chmod a+rx $@
|
2020-05-25 17:39:22 +03:00
|
|
|
cp $@ dist/spacy.pex
|
2019-08-25 15:54:19 +03:00
|
|
|
|
2020-02-26 22:59:10 +03:00
|
|
|
dist/pytest.pex : wheelhouse/pytest-*.whl
|
2020-03-04 21:28:16 +03:00
|
|
|
$(VENV)/bin/pex -f ./wheelhouse --no-index --disable-cache -m pytest -o $@ pytest pytest-timeout mock
|
|
|
|
chmod a+rx $@
|
2019-08-25 15:54:19 +03:00
|
|
|
|
2020-03-04 21:28:16 +03:00
|
|
|
wheelhouse/spacy-$(version).stamp : $(VENV)/bin/pex setup.py spacy/*.py* spacy/*/*.py*
|
2020-02-26 22:59:10 +03:00
|
|
|
$(VENV)/bin/pip wheel . -w ./wheelhouse
|
2020-07-20 15:58:04 +03:00
|
|
|
$(VENV)/bin/pip wheel spacy-lookups-data jieba pkuseg==0.0.25 sudachipy sudachidict_core -w ./wheelhouse
|
2020-03-04 21:28:16 +03:00
|
|
|
touch $@
|
2020-02-26 22:59:10 +03:00
|
|
|
|
|
|
|
wheelhouse/pytest-%.whl : $(VENV)/bin/pex
|
|
|
|
$(VENV)/bin/pip wheel pytest pytest-timeout mock -w ./wheelhouse
|
|
|
|
|
2020-03-04 21:28:16 +03:00
|
|
|
$(VENV)/bin/pex :
|
2020-02-26 22:59:10 +03:00
|
|
|
python$(PYVER) -m venv $(VENV)
|
2020-03-08 15:24:19 +03:00
|
|
|
$(VENV)/bin/pip install -U pip setuptools pex wheel
|
2020-02-26 22:59:10 +03:00
|
|
|
|
|
|
|
.PHONY : clean test
|
2018-06-25 00:39:34 +03:00
|
|
|
|
2020-02-26 22:59:10 +03:00
|
|
|
test : dist/spacy-$(version).pex dist/pytest.pex
|
2020-03-04 21:28:16 +03:00
|
|
|
( . $(VENV)/bin/activate ; \
|
|
|
|
PEX_PATH=dist/spacy-$(version).pex ./dist/pytest.pex --pyargs spacy -x ; )
|
2018-06-25 00:39:34 +03:00
|
|
|
|
|
|
|
clean : setup.py
|
|
|
|
rm -rf dist/*
|
2020-02-26 22:59:10 +03:00
|
|
|
rm -rf ./wheelhouse
|
2020-03-04 21:28:16 +03:00
|
|
|
rm -rf $(VENV)
|
2018-06-25 00:39:34 +03:00
|
|
|
python setup.py clean --all
|