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"