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