Files
pseudbot/Makefile
T
Andrew Rogers c5f7abb32b added README
2021-12-07 16:50:08 -06:00

21 lines
357 B
Makefile

install:
python setup.py install
clean:
python setup.py clean
rm -rvf build *.egg-info dist
reinstall:
$(MAKE) clean
$(MAKE) install
readme-preview:
pandoc README.md -s -c img/pub.css -o README.html
format:
black -v -l 80 pseudbot/*
black -v -l 80 scripts/*
# Uncomment below if we ever include code examples:
##black -v -l 80 examples/*.py