You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
357 B
20 lines
357 B
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
|
|
|