1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
.PHONY: test test-all upload register clean bootstrap
test: bootstrap
_virtualenv/bin/py.test tests
upload: jq.c
python setup.py sdist upload
make clean
register:
python setup.py register
clean:
rm -f MANIFEST
rm -rf dist
bootstrap: _virtualenv jq.c
_virtualenv/bin/pip install -e .
ifneq ($(wildcard test-requirements.txt),)
_virtualenv/bin/pip install -r test-requirements.txt
endif
make clean
_virtualenv:
python3 -m venv _virtualenv
_virtualenv/bin/pip install --upgrade pip
_virtualenv/bin/pip install --upgrade setuptools
_virtualenv/bin/pip install --upgrade wheel
jq.c: _virtualenv jq.pyx
_virtualenv/bin/pip install cython==3.0.10
_virtualenv/bin/cython jq.pyx
|