python-telegram-bot/Makefile

53 lines
1.3 KiB
Makefile
Raw Normal View History

.DEFAULT_GOAL := help
.PHONY: clean pep257 pep8 yapf lint test install
2015-07-07 22:19:26 +02:00
PYLINT := pylint
NOSETESTS := nosetests
PEP257 := pep257
PEP8 := flake8
YAPF := yapf
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 {} \;
find . -regex "./telegram.\(mp3\|mp4\|ogg\|png\|webp\)" -exec rm {} \;
2015-07-07 22:19:26 +02:00
pep257:
$(PEP257) telegram
pep8:
$(PEP8) telegram
yapf:
$(YAPF) -r telegram
2015-07-07 22:19:26 +02:00
lint:
$(PYLINT) -E telegram --disable=no-name-in-module,import-error
2015-07-07 22:19:26 +02:00
test:
$(NOSETESTS) -v
2015-09-07 21:28:00 +02:00
2015-11-10 15:10:50 +01:00
install:
$(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:
@echo "Available targets:"
@echo "- clean Clean up the source directory"
@echo "- pep257 Check docstring style with pep257"
@echo "- pep8 Check style with flake8"
@echo "- lint Check style with pylint"
@echo "- yapf Check style with yapf"
@echo "- test Run tests"
@echo
@echo "Available variables:"
@echo "- PYLINT default: $(PYLINT)"
@echo "- NOSETESTS default: $(NOSETESTS)"
@echo "- PEP257 default: $(PEP257)"
@echo "- PEP8 default: $(PEP8)"
@echo "- YAPF default: $(YAPF)"
@echo "- PIP default: $(PIP)"