Skip to content

Commit 3bdc1a8

Browse files
authored
Add Makefile (#31)
1 parent ff3bc03 commit 3bdc1a8

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+
2+
clean:
3+
find . -name '*.pyc' -exec rm -f {} +
4+
find . -name '*.pyo' -exec rm -f {} +
5+
find . -name '*~' -exec rm -f {} +
6+
find . -name '__pycache__' -exec rm -rf {} +
7+
8+
test:
9+
tox -e py27
10+
11+
test-tox:
12+
tox

0 commit comments

Comments
 (0)