python-telegram-bot/Makefile

32 lines
640 B
Makefile
Raw Normal View History

2015-11-10 15:10:50 +01:00
.PHONY: clean pep8 lint test install
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 {} \;
pep257:
pep257 telegram
pep8:
flake8 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:
2015-09-08 20:03:04 +02:00
nosetests
2015-09-07 21:28:00 +02:00
2015-11-10 15:10:50 +01:00
install:
pip install -r requirements.txt
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 "- test Run tests"