Skip to content

Commit 6ae2a49

Browse files
author
Oliver Flasch
committed
added a Python tarball build script
1 parent 97ca767 commit 6ae2a49

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ Pull requests are welcome.
2525
Please see https://github.com/plotly/dash-component-boilerplate for information on the architecture of Dash components.
2626

2727

28+
## Creating and Publishing Production Builds
29+
30+
Run `make_python_dist.sh` to create a Python package tarball.
31+
This distribution tarball will get generated in the `dist/` folder.
32+
33+
2834
# Acknowledgements
2935

3036
* [Plotly Dash](https://plot.ly/products/dash/)

make_python_dist.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
clear
4+
npm run build:all
5+
python setup.py sdist

0 commit comments

Comments
 (0)