Files
pseudbot/Makefile
T
Andrew Rogers 94c39fe58d basic plumbing
2021-12-07 16:49:56 -06:00

18 lines
289 B
Makefile

install:
python setup.py install
clean:
python setup.py clean
rm -rvf build *.egg-info dist
reinstall:
$(MAKE) clean
$(MAKE) install
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