Skip to content

Commit 6a10272

Browse files
authored
Merge pull request #23 from yncat/cat/makefile
Add makefile for running / auto formatting / building
2 parents f0d7d1d + bbc914c commit 6a10272

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

makefile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
run:
2+
py ss.py
3+
4+
setup:
5+
py -m pip install -r requirements.txt
6+
7+
fmt:
8+
py -m autopep8 -r -i -a -a --ignore=E402,E721 --max-line-length 150 .
9+
10+
.PHONY: build
11+
build:
12+
py tools\build.py

0 commit comments

Comments
 (0)