Files
sglang/python/upload_pypi.sh

7 lines
115 B
Bash
Raw Normal View History

2024-01-15 01:15:53 -08:00
cp ../README.md ../LICENSE .
2024-01-09 12:43:40 -08:00
rm -rf dist
python3 -m build
python3 -m twine upload dist/*
2024-01-15 01:15:53 -08:00
rm -rf README.md LICENSE