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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
default: tests
.PHONY: manual tests cleanup upload conda sdist wheel install
PYTHON=python3
PIP=pip3
# Install using pip
install:
${PIP} install --upgrade --user --editable .
# Source distribution
sdist:
${PYTHON} setup.py sdist
# Pure Python Wheel
wheel:
${PYTHON} setup.py bdist_wheel
# Create the manual
manual:
cd doc && make latexpdf
mkdir -p manual
cp doc/_build/latex/Gfapy.pdf manual/gfapy-manual.pdf
doctest:
cd doc && make doctest
unittests:
@echo
@echo "Running unit test suite..."
@PYTHONHASHSEED=0 ${PYTHON} -m unittest discover
tests: doctest unittests
# Remove distribution files
cleanup:
rm -rf dist/ build/ gfapy.egg-info/
upload: tests cleanup sdist wheel
cd dist; \
for file in *; do \
twine check $$file && \
twine upload $$file; \
done
conda:
mkdir -p conda
cd conda; \
conda skeleton pypi gfapy; \
conda build gfapy
|