6 lines
84 B
Bash
6 lines
84 B
Bash
#!/bin/bash -e
|
|
rm -rf dist
|
|
ipython3 setup.py sdist bdist_wheel
|
|
twine upload dist/*
|
|
|