2016-03-15 02:56:20 +01:00
|
|
|
.DEFAULT_GOAL := help
|
2016-05-15 04:46:21 +02:00
|
|
|
.PHONY: clean pep257 pep8 yapf lint test install
|
2015-07-07 22:19:26 +02:00
|
|
|
|
2016-02-06 10:34:38 +01:00
|
|
|
PYLINT := pylint
|
2017-08-11 23:58:41 +02:00
|
|
|
PYTEST := pytest
|
2016-02-06 10:34:38 +01:00
|
|
|
PEP257 := pep257
|
|
|
|
PEP8 := flake8
|
2016-05-15 04:46:21 +02:00
|
|
|
YAPF := yapf
|
2020-10-06 19:28:40 +02:00
|
|
|
MYPY := mypy
|
2016-02-06 10:34:38 +01:00
|
|
|
PIP := pip
|
|
|
|
|
2015-07-07 22:19:26 +02:00
|
|
|
clean:
|
|
|
|
rm -fr build
|
|
|
|
rm -fr dist
|
|
|
|
find . -name '*.pyc' -exec rm -f {} \;
|
|
|
|
find . -name '*.pyo' -exec rm -f {} \;
|
|
|
|
find . -name '*~' -exec rm -f {} \;
|
2016-03-12 22:23:14 +01:00
|
|
|
find . -regex "./telegram.\(mp3\|mp4\|ogg\|png\|webp\)" -exec rm {} \;
|
2015-07-07 22:19:26 +02:00
|
|
|
|
2016-01-13 17:09:35 +01:00
|
|
|
pep257:
|
2016-02-06 10:34:38 +01:00
|
|
|
$(PEP257) telegram
|
2016-01-13 17:09:35 +01:00
|
|
|
|
2015-08-28 22:45:44 +02:00
|
|
|
pep8:
|
2016-05-15 04:46:21 +02:00
|
|
|
$(PEP8) telegram
|
|
|
|
|
|
|
|
yapf:
|
|
|
|
$(YAPF) -r telegram
|
2015-08-28 22:45:44 +02:00
|
|
|
|
2015-07-07 22:19:26 +02:00
|
|
|
lint:
|
2016-02-06 10:34:38 +01:00
|
|
|
$(PYLINT) -E telegram --disable=no-name-in-module,import-error
|
2015-07-07 22:19:26 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
mypy:
|
|
|
|
$(MYPY) -p telegram
|
|
|
|
|
2015-07-07 22:19:26 +02:00
|
|
|
test:
|
2017-08-11 23:58:41 +02:00
|
|
|
$(PYTEST) -v
|
2015-09-07 21:28:00 +02:00
|
|
|
|
2015-11-10 15:10:50 +01:00
|
|
|
install:
|
2016-05-15 03:24:35 +02:00
|
|
|
$(PIP) install -r requirements.txt -r requirements-dev.txt
|
2015-11-10 15:10:50 +01:00
|
|
|
|
2015-08-28 18:02:02 +02:00
|
|
|
help:
|
2015-08-28 22:45:44 +02:00
|
|
|
@echo "Available targets:"
|
|
|
|
@echo "- clean Clean up the source directory"
|
2016-01-13 17:09:35 +01:00
|
|
|
@echo "- pep257 Check docstring style with pep257"
|
2015-08-28 22:45:44 +02:00
|
|
|
@echo "- pep8 Check style with flake8"
|
|
|
|
@echo "- lint Check style with pylint"
|
2016-05-15 04:46:21 +02:00
|
|
|
@echo "- yapf Check style with yapf"
|
2020-10-06 19:28:40 +02:00
|
|
|
@echo "- mypy Check type hinting with mypy"
|
2017-08-11 23:58:41 +02:00
|
|
|
@echo "- test Run tests using pytest"
|
2016-02-06 10:34:38 +01:00
|
|
|
@echo
|
|
|
|
@echo "Available variables:"
|
|
|
|
@echo "- PYLINT default: $(PYLINT)"
|
2017-08-11 23:58:41 +02:00
|
|
|
@echo "- PYTEST default: $(PYTEST)"
|
2016-02-06 10:34:38 +01:00
|
|
|
@echo "- PEP257 default: $(PEP257)"
|
|
|
|
@echo "- PEP8 default: $(PEP8)"
|
2016-05-15 04:46:21 +02:00
|
|
|
@echo "- YAPF default: $(YAPF)"
|
2020-10-06 19:28:40 +02:00
|
|
|
@echo "- MYPY default: $(MYPY)"
|
2016-02-06 10:34:38 +01:00
|
|
|
@echo "- PIP default: $(PIP)"
|