blob: bcf4cf01972afa4f4791e69cfc5895131bdad975 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clean:
find . -type f -name "*.py[co]" -delete
find . -type d -name "__pycache__" -delete
dev-mail:
pip install -e '.[mail]'
pip install -e www
dev-all:
pip install -e '.[all]'
uninstall:
pip uninstall leap.bitmask
|