7 lines
124 B
Bash
7 lines
124 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -rf build dist ergo_nn.egg-info &&
|
||
|
python3 setup.py sdist bdist_wheel &&
|
||
|
clear &&
|
||
|
twine upload dist/*
|