Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
2ba2e04
1
Parent(s):
149d481
Create Makefile
Browse files
Makefile
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
test:
|
| 2 |
+
@pre-commit run --all-files
|
| 3 |
+
|
| 4 |
+
install:
|
| 5 |
+
@pip3 install --upgrade pip setuptools wheel
|
| 6 |
+
@sleep 3
|
| 7 |
+
@pip install -r requirements.txt
|
| 8 |
+
|
| 9 |
+
run:
|
| 10 |
+
@python3 -m alita
|
| 11 |
+
|
| 12 |
+
clean:
|
| 13 |
+
@rm -rf Powers/logs
|
| 14 |
+
@pyclean .
|