| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 
 | 
ifneq (,$(wildcard /.dockerenv))
	PYTHON_BIN := /usr/local/bin/python3
	PIP_BIN := /usr/local/bin/pip3
	PYLINT_BIN := ~/.local/bin/pylint
	MYPY_BIN := ~/.local/bin/mypy
	TWINE_BIN := ~/.local/bin/twine
	PIP_INSTALL := $(PIP_BIN) install --progress-bar=off --user
else
	VENV_DIR := ./.venv
	PYTHON_BIN := $(VENV_DIR)/bin/python3
	PIP_BIN := $(VENV_DIR)/bin/pip3
	PYLINT_BIN := $(VENV_DIR)/bin/pylint
	MYPY_BIN := $(VENV_DIR)/bin/mypy
	TWINE_BIN := $(VENV_DIR)/bin/twine
	PIP_INSTALL := $(PIP_BIN) install --progress-bar=off
endif
.PHONY: help
all: help
venv: ## Set up the virtual environment
	virtualenv -p python3 $(VENV_DIR)
lint: ## Run linting (pylint)
	$(PYLINT_BIN) -f colorized ./exifread
mypy: ## Run mypy
	$(MYPY_BIN) --show-error-context ./exifread ./EXIF.py
#test: ## Run all tests
#	$(PYTHON_BIN) -m unittest discover -v -s ./tests
analyze: lint mypy ## Run all static analysis tools
reqs-install: ## Install with all requirements
	$(PIP_INSTALL) .[dev]
samples-download: ## Install sample files used for testing.
	wget https://github.com/ianare/exif-samples/archive/master.tar.gz
	tar -xzf master.tar.gz
build:  ## build distribution
	rm -fr ./dist
	$(PYTHON_BIN) setup.py sdist
publish: build ## Publish to PyPI
	$(TWINE_BIN) upload --repository testpypi dist/*
help: Makefile
	@echo
	@echo "Choose a command to run:"
	@echo
	@grep --no-filename -E '^[a-zA-Z_%-]+:.*?## .*$$' Makefile | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-30s\033[0m %s\n", $$1, $$2}'
	@echo 
 |