File size: 233 Bytes
232bdb4
 
2ba2e04
 
 
 
4ef7a54
232bdb4
 
2ba2e04
 
6631dde
2ba2e04
 
 
232bdb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: test install run clean

test:
	@pre-commit run --all-files

install:
	@pip3 install --upgrade pip setuptools wheel
	sleep 3
	@pip3 install -r requirements.txt

run:
	@python3 -m Powers

clean:
	@rm -rf Powers/logs
	@pyclean .