spaCy/Makefile
2018-06-24 23:39:34 +02:00

23 lines
567 B
Makefile

SHELL := /bin/bash
sha = $(shell "git" "rev-parse" "--short" "HEAD")
dist/spacy.pex :
python3.6 -m venv env3.6
source env3.6/bin/activate
pip install wheel
pip install -r requirements.txt --no-cache-dir --no-binary :all:
python setup.py build_ext --inplace
python setup.py sdist
python setup.py bdist_wheel
python -m pip install pex
pex dist/*.whl -e spacy -o dist/spacy-$(sha).pex
cp dist/spacy-$(sha).pex dist/spacy.pex
chmod a+rx dist/spacy.pex
.PHONY : clean
clean : setup.py
source env3.6/bin/activate
rm -rf dist/*
python setup.py clean --all