Spaces:
Sleeping
Sleeping
Captain Ezio
commited on
Commit
·
fde7d74
1
Parent(s):
012748c
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 .
|