forked from opsmop/opsmop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
46 lines (31 loc) · 1.09 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
requirements:
pip install -r requirements.txt --trusted-host pypi.org --trusted-host files.pypi.org --trusted-host files.pythonhosted.org
venv:
virtualenv env -p /usr/local/bin/python3
html: cleardocs gendocs sphinx docs_publish
cleardocs:
(rm -rf docs/build/html)
(rm -rf docs/build/doctrees)
sphinx:
(cd docs; make html)
gendocs:
PYTHONPATH=. python3 -m opsmop.meta.docs.cli ../opsmop-demo/module_docs docs/source/modules
docs_publish:
cp -a docs/build/html/* ../opsmop-docs/
indent_check:
pep8 --select E111 opsmop/
pyflakes:
pyflakes opsmop/
clean:
find . -name '*.pyc' | xargs rm -r
find . -name '__pycache__' | xargs rm -rf
todo:
grep TODO -rn opsmop
bug:
grep BUG -rn opsmop
fixme:
grep FIXME -rn opsmop
isort:
find opsmop -name '*.py' | xargs isort
gource:
gource -s .06 -1280x720 --auto-skip-seconds .1 --hide mouse,progress,filenames --key --multi-sampling --stop-at-end --file-idle-time 0 --max-files 0 --background-colour 000000 --font-size 22 --title "OpsMop" --output-ppm-stream - --output-framerate 30 | avconv -y -r 30 -f image2pipe -vcodec ppm -i - -b 65536K movie.mp4