Spaces:
Configuration error
Configuration error
File size: 367 Bytes
447ebeb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/bash
# Exit on error
set -e
echo "π Building and publishing litellm-proxy-extras"
# Navigate to litellm-proxy-extras directory
cd "$(dirname "$0")/../litellm-proxy-extras"
# Build the package
echo "π¦ Building package..."
poetry build
# Publish to PyPI
echo "π Publishing to PyPI..."
poetry publish
echo "β
Done! Package published successfully" |