Skip to content

Commit 1941366

Browse files
committed
add Makefile
1 parent b82c958 commit 1941366

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Makefile

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.PHONY: install
2+
3+
isort:
4+
isort .
5+
6+
test:
7+
python3 -m pytest . -v
8+
9+
flake8:
10+
python3 -m flake8 .
11+
12+
clean-build:
13+
rm -rf *.egg-info dist build
14+
15+
clean-pyc:
16+
find . -name '*.pyc' -delete
17+
find . -name '*.pyo' -delete
18+
19+
trim:
20+
trim .
21+
22+
unify:
23+
unify -i -r .
24+
25+
trail-comma:
26+
find . -name '*.py' -exec add-trailing-comma {} +

0 commit comments

Comments
 (0)