mirror of
https://github.com/venthur/blag.git
synced 2025-11-25 12:42:41 +00:00
25 lines
283 B
Makefile
25 lines
283 B
Makefile
.PHONY: \
|
|
test \
|
|
lint \
|
|
docs \
|
|
release \
|
|
clean
|
|
|
|
all: lint test
|
|
|
|
test:
|
|
pytest
|
|
|
|
lint:
|
|
flake8
|
|
|
|
#docs:
|
|
# $(MAKE) -C docs html
|
|
|
|
release:
|
|
python3 setup.py sdist bdist_wheel upload
|
|
|
|
clean:
|
|
find . -type f -name *.pyc -delete
|
|
find . -type d -name __pycache__ -delete
|