mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-07-09 01:51:07 +00:00

### What problem does this PR solve? Replace poetry with uv ### Type of change - [x] Refactoring
12 lines
203 B
Markdown
12 lines
203 B
Markdown
# 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
|
|
```
|