build

1.4.2 · active · verified Sat Mar 28

A simple, correct Python build frontend. Current version: 1.4.2. Released on March 25, 2026. Maintained by the Python Packaging Authority (PyPa).

Warnings

Install

Imports

Quickstart

Builds the package in the current directory, generating a source distribution and wheel in the 'dist/' directory.

import build

# Build the package in the current directory
build.build()  # This will build the package in an isolated environment, generating a source distribution and wheel in the 'dist/' directory.

view raw JSON →