File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,25 @@ readme :
4
4
@echo " "
5
5
@less make_instructions.txt
6
6
7
+ build :
8
+ @echo making a new distribution zip
9
+ @echo deleting all the old things
10
+ rm -rf stand_alone_dist/dist/
11
+ rm -f stand_alone_dist/dist.zip
12
+ @echo grabbing tarballs
13
+ mkdir stand_alone_dist/dist/
14
+ cd stand_alone_dist/dist; python ../../build_utils/get_core_requirements_links.py | xargs -n1 curl -O
15
+ python setup.py sdist --dist-dir stand_alone_dist/dist
16
+ @echo unpacking tarballs
17
+ cd stand_alone_dist/dist; ls | xargs -n1 tar -xf
18
+ @echo renaming packages so they install in order
19
+ python build_utils/rename_dist_packages.py
20
+ @echo making a downloadable zip
21
+ cd stand_alone_dist; zip -r dist.zip dist
22
+ @echo cleaning up
23
+ rm -rf stand_alone_dist/dist
24
+ @echo all done, have an ok day
25
+
7
26
setup_subs :
8
27
@echo " Deleting old submodule locations, if they exist"
9
28
rm -rf plotly/graph_reference
You can’t perform that action at this time.
0 commit comments