spaCy/Makefile

65 lines
1.5 KiB
Makefile
Raw Permalink Normal View History

2018-06-02 18:10:15 +03:00
SHELL := /bin/bash
2020-08-24 17:32:21 +03:00
ifndef SPACY_EXTRAS
override SPACY_EXTRAS = spacy-lookups-data==1.0.3
2020-08-24 17:32:21 +03:00
endif
2020-08-30 17:16:30 +03:00
ifndef PYVER
override PYVER = 3.8
2020-08-30 17:16:30 +03:00
endif
VENV := ./env$(PYVER)
2020-03-04 21:28:16 +03:00
version := $(shell "bin/get-version.sh")
2020-08-24 15:41:56 +03:00
package := $(shell "bin/get-package.sh")
2020-08-24 18:09:05 +03:00
ifndef SPACY_BIN
override SPACY_BIN = $(package)-$(version).pex
endif
2020-08-24 15:48:32 +03:00
2020-08-30 21:00:49 +03:00
ifndef WHEELHOUSE
override WHEELHOUSE = "./wheelhouse"
endif
dist/$(SPACY_BIN) : $(WHEELHOUSE)/spacy-$(PYVER)-$(version).stamp
2020-09-01 02:22:54 +03:00
$(VENV)/bin/pex \
2020-08-30 21:00:49 +03:00
-f $(WHEELHOUSE) \
2020-08-24 15:41:56 +03:00
--no-index \
--disable-cache \
-o $@ \
$(package)==$(version) \
2020-10-09 00:18:02 +03:00
$(SPACY_EXTRAS)
2020-03-04 21:28:16 +03:00
chmod a+rx $@
cp $@ dist/spacy.pex
2019-08-25 15:54:19 +03:00
2020-08-30 21:14:52 +03:00
dist/pytest.pex : $(WHEELHOUSE)/pytest-*.whl
2020-08-30 21:00:49 +03:00
$(VENV)/bin/pex -f $(WHEELHOUSE) --no-index --disable-cache -m pytest -o $@ pytest pytest-timeout mock
2020-03-04 21:28:16 +03:00
chmod a+rx $@
2019-08-25 15:54:19 +03:00
2020-08-30 21:00:49 +03:00
$(WHEELHOUSE)/spacy-$(PYVER)-$(version).stamp : $(VENV)/bin/pex setup.py spacy/*.py* spacy/*/*.py*
2020-09-01 02:22:54 +03:00
$(VENV)/bin/pip wheel . -w $(WHEELHOUSE)
$(VENV)/bin/pip wheel $(SPACY_EXTRAS) -w $(WHEELHOUSE)
2020-08-24 15:41:56 +03:00
2020-03-04 21:28:16 +03:00
touch $@
2020-08-30 21:00:49 +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 :
python$(PYVER) -m venv $(VENV)
$(VENV)/bin/pip install -U pip setuptools pex wheel
2020-08-30 18:11:24 +03:00
$(VENV)/bin/pip install numpy
.PHONY : clean test
2018-06-25 00:39:34 +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-08-30 21:00:49 +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