ragflow / sdk /python /README.md
zhichyu's picture
Replace poetry with uv (#4471)
1e39314
|
raw
history blame
203 Bytes
# ragflow-sdk
# build and publish python SDK to pypi.org
```shell
uv build
uv pip install twine
export TWINE_USERNAME="__token__"
export TWINE_PASSWORD=$YOUR_PYPI_API_TOKEN
twine upload dist/*.whl
```