Makefile 341 B

123456789101112131415161718
  1. .PHONY: help install test format lint clean examples
  2. install:
  3. pip install -e .
  4. test:
  5. httphound -l debug example_tests
  6. lint:
  7. flake8 httphound/* example_tests/*
  8. clean:
  9. find . -type d -name "__pycache__" -exec rm -rf {} +
  10. find . -type f -name "*.pyc" -delete
  11. find . -type d -name "*.egg-info" -exec rm -rf {} +
  12. rm -rf build/ dist/