1#!/usr/bin/env bash
2# Build sdist (.tar.gz) and wheel (.whl) for i2p-python.
3# Runs inside an isolated Python container — never on bare metal.
4set -euo pipefail
5
6echo "=== Building sdist and wheel ==="
7
8python3 -m build --outdir /out
9
10echo "=== Artifacts ==="
11ls -lh /out/