mirror of
https://github.com/langgenius/dify.git
synced 2025-12-19 17:27:16 -05:00
10 lines
140 B
Bash
Executable File
10 lines
140 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/*
|