#!/bin/bash

# Remove the dist directory if it exists
rm -rf dist 2>/dev/null || true

# Build the package
uv build

# Upload the package to PyPI
uv publish --token "$PYPI_TOKEN"