fog/Makefile

32 lines
644 B
Makefile

# Variables
SOURCE = fog
# Commands
all: lint test
test: build-ext unit
publish: lint test build-ext upload clean
build-ext:
@echo Building native extensions...
find . -name *.pyx | xargs cython && find . -name *.c
@echo
clean:
rm -rf *.egg-info .pytest_cache .ipynb_checkpoints build dist
find . -name __pycache__ -type d | xargs rm -rf
find . -name *.c -type f | xargs rm
lint:
@echo Linting source code using pep8...
pycodestyle --ignore E501,E722,E731,E741,W503,W504 $(SOURCE) test
@echo
unit:
@echo Running unit tests...
PYTHONHASHSEED=0 && pytest -s
@echo
upload:
python setup.py sdist bdist_wheel
twine upload dist/*