install:  ## Install package from source in edit mode
	pip install -e .

deps:  ## Install development dependencies
	pip install -r requirements.txt

lint:  ## Lint code
	flake8 --config flake8 scrapingbee/ tests/ setup.py

test:  ## Run tests
	python -m pytest tests/

build:  ## Build a binary wheel and a source tarball
	python setup.py sdist bdist_wheel
