.PHONY: help install test format lint clean examples

install:
	pip install -e .

test:
	httphound -l debug --test-dir 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/


