| 123456789101112131415161718 |
- .PHONY: help install test format lint clean examples
- install:
- pip install -e .
- 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/
|