forked from plotly/plotly.py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
38 lines (28 loc) · 1.17 KB
/
makefile
File metadata and controls
38 lines (28 loc) · 1.17 KB
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
all : pull_all install
sync_mplexporter : plotly/mplexporter
rsync -r plotly/mplexporter/mplexporter plotly/matplotlylib/
sync_chunked_requests : plotly/chunked_requests
rsync -r plotly/chunked_requests/chunked_requests plotly/plotly/
install : sync_mplexporter sync_chunked_requests
python setup.py install
pull_refs : plotly/graph_reference
cd plotly/graph_reference; git pull origin master
pull_mpl : plotly/mplexporter
cd plotly/mplexporter; git pull origin master
pull_chunked : plotly/chunked_requests
cd plotly/chunked_requests; git pull origin master
pull_all : pull_refs pull_mpl pull_chunked
pull_subs :
echo separated submodule pulls, run pull_refs, pull_chunked, or pull_mpl
show_subs : plotly/graph_reference plotly/chunked_requests plotly/mplexporter
git for each ‘git remote -v’
html_nbs : notebooks
cd notebooks; \
ipython nbconvert 'Plotly and Python.ipynb'; \
python add_some_css.py 'Plotly and Python.html'
cd notebooks; \
ipython nbconvert 'Plotly and matplotlib and mpld3.ipynb'; \
python add_some_css.py 'Plotly and matplotlib and mpld3.html'
cd notebooks; \
ipython nbconvert Quickstart.ipynb; \
python add_some_css.py Quickstart.html