We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86142a3 commit 4428fb0Copy full SHA for 4428fb0
Makefile
@@ -2,6 +2,7 @@
2
help:
3
@echo " env install all production dependencies"
4
@echo " dev install all dev and production dependencies (virtualenv is assumed)"
5
+ @echo " docs build documentation"
6
@echo " clean remove unwanted stuff"
7
@echo " lint check style with flake8"
8
@echo " test run tests"
@@ -23,7 +24,10 @@ clean:
23
24
rm -fr dist
25
find . -name '*.pyc' -exec rm -f {} \;
26
find . -name '*.pyo' -exec rm -f {} \;
- find . -name '*~' -exec rm -f {} \;
27
+ find . -name '*~' ! -name '*.un~' -exec rm -f {} \;
28
+
29
+docs:
30
+ $(MAKE) -C doc html
31
32
lint:
33
flake8 twitter > violations.flake8.txt
0 commit comments