Skip to main content

Build Python wheels from pre-compiled binaries

Project description

bin2whl

Build Python wheels from pre-compiled binaries. Takes any pre-compiled binary (Go, Zig, C, Rust, etc.) and packages it as a platform-specific Python wheel for distribution on PyPI. One wheel per binary, per platform.

Features

  • Zero dependencies (pure Python, standard library only)
  • Multi-binary support — include multiple binaries per wheel (e.g. server + client)
  • Config file support (--config wheel.json) for repeatable builds
  • Single binary mode for one-off builds
  • Platform aliases for cleaner config (e.g. linux_arm64 instead of manylinux_2_17_aarch64)
  • Binaries land directly in venv's bin/ — no Python wrapper
  • Supports macOS, Linux, and Windows on x86_64 and ARM64
  • Proper wheel metadata and SHA256 hashes (PEP 427)
  • Optional PyPI classifiers
  • Works with pip install and uv tool install

Installation

# Using uv
uv pip install bin2whl

# Using pip
pip install bin2whl

Usage

Config file mode

Create a wheel.json. For a single binary per platform:

{
    "name": "your-go-tool",
    "version": "0.1.0",
    "description": "A Go CLI tool packaged for PyPI",
    "author": "Your Name",
    "binaries": {
        "linux_x86_64": "dist/tool-linux-x86_64",
        "linux_arm64": "dist/tool-linux-arm64",
        "macos_arm64": "dist/tool-macos-arm64",
        "windows_amd64": "dist/tool-win-x86_64.exe"
    }
}

For multiple binaries per platform (e.g. server + client):

{
    "name": "your-suite",
    "version": "0.1.0",
    "binaries": {
        "linux_x86_64": [
            {"name": "your-server", "path": "dist/server-linux-x86_64"},
            {"name": "your-client", "path": "dist/client-linux-x86_64"}
        ],
        "macos_arm64": [
            {"name": "your-server", "path": "dist/server-darwin-arm64"},
            {"name": "your-client", "path": "dist/client-darwin-arm64"}
        ]
    }
}

Then build:

bin2whl --config wheel.json

Single binary mode

bin2whl \
  --name your-go-tool \
  --version-str 0.1.0 \
  --binary dist/tool-linux-x86_64 \
  --platform linux_x86_64

Output

Each binary produces one wheel:

wheels/
├── your_go_tool-0.1.0-py3-none-manylinux_2_17_x86_64.whl
├── your_go_tool-0.1.0-py3-none-manylinux_2_17_aarch64.whl
├── your_go_tool-0.1.0-py3-none-macosx_10_9_x86_64.whl
├── your_go_tool-0.1.0-py3-none-macosx_11_0_arm64.whl
├── your_go_tool-0.1.0-py3-none-win_amd64.whl
└── your_go_tool-0.1.0-py3-none-win_arm64.whl

Upload to PyPI, then users just run:

pip install your-go-tool
your-go-tool --help

Development

# Set up development environment
make dev

# Run linting and type checks
make check

# Format code
make format

# Build wheel and docs
make build

Publishing

Publishing requires cal-publish-python configuration.

# Build first
make build

# Publish wheel to PyPI and docs to GitLab Pages
make publish

Licence

Unlicense — public domain. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bin2whl-1.0.0b4-py3-none-any.whl (16.6 kB view details)

Uploaded Python 3

File details

Details for the file bin2whl-1.0.0b4-py3-none-any.whl.

File metadata

  • Download URL: bin2whl-1.0.0b4-py3-none-any.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for bin2whl-1.0.0b4-py3-none-any.whl
Algorithm Hash digest
SHA256 5c9f72b8a03f6a8628d388934f3796738b0ec3e05682b3463ad681e9f4ed9ebf
MD5 c8b4af91d22cac42d5dbe94643ef61c4
BLAKE2b-256 e91f09cd18e2b11ff4bf3b85f5a1a47ecdb520fbb1af3b6f760f43fd829ac3a0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page