mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-08 10:26:50 +08:00
9 lines
139 B
Bash
Executable File
9 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm -rf build dist *.egg-info
|
|
|
|
pip install setuptools wheel twine
|
|
python setup.py sdist bdist_wheel
|
|
twine upload dist/* |