.PHONY: help install test format lint clean examples install: pip install -e . install-docs: pip install -e ".[dev,docs]" docs-serve: mkdocs serve docs-build: mkdocs build test: httphound -l debug example_tests lint: flake8 httphound/* example_tests/* clean: find . -type d -name "__pycache__" -exec rm -rf {} + find . -type f -name "*.pyc" -delete find . -type d -name "*.egg-info" -exec rm -rf {} + rm -rf build/ dist/