Metadata-Version: 2.4 Name: build Version: 1.3.0 Summary: A simple, correct Python build frontend Author-email: Filipe Laíns , Bernát Gábor , layday , Henry Schreiner Requires-Python: >= 3.9 Description-Content-Type: text/markdown License-Expression: MIT Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3 :: Only Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Programming Language :: Python :: 3.14 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy License-File: LICENSE Requires-Dist: packaging >= 19.1 Requires-Dist: pyproject_hooks Requires-Dist: colorama; os_name == "nt" Requires-Dist: importlib-metadata >= 4.6; python_full_version < "3.10.2" Requires-Dist: tomli >= 1.1.0; python_version < "3.11" Requires-Dist: uv >= 0.1.18 ; extra == "uv" Requires-Dist: virtualenv >= 20.11 ; extra == "virtualenv" and ( python_version < '3.10') Requires-Dist: virtualenv >= 20.17 ; extra == "virtualenv" and ( python_version >= '3.10' and python_version < '3.14') Requires-Dist: virtualenv >= 20.31 ; extra == "virtualenv" and ( python_version >= '3.14') Project-URL: changelog, https://build.pypa.io/en/stable/changelog.html Project-URL: homepage, https://build.pypa.io Project-URL: issues, https://github.com/pypa/build/issues Project-URL: source, https://github.com/pypa/build Provides-Extra: uv Provides-Extra: virtualenv # build [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pypa/build/main.svg)](https://results.pre-commit.ci/latest/github/pypa/build/main) [![CI test](https://github.com/pypa/build/actions/workflows/test.yml/badge.svg)](https://github.com/pypa/build/actions/workflows/test.yml) [![codecov](https://codecov.io/gh/pypa/build/branch/main/graph/badge.svg)](https://codecov.io/gh/pypa/build) [![Documentation Status](https://readthedocs.org/projects/pypa-build/badge/?version=latest)](https://build.pypa.io/en/latest/?badge=latest) [![PyPI version](https://badge.fury.io/py/build.svg)](https://pypi.org/project/build/) [![Discord](https://img.shields.io/discord/803025117553754132?label=Discord%20chat%20%23build)](https://discord.gg/pypa) A simple, correct Python build frontend. See the [documentation](https://build.pypa.io) for more information. ### Installation `build` can be installed via `pip` or an equivalent via: ```console $ pip install build ``` ### Usage ```console $ python -m build ``` This will build the package in an isolated environment, generating a source-distribution and wheel in the directory `dist/`. See the [documentation](https://build.pypa.io) for full information. Build is also available via the command line as `pyproject-build` once installed. ### Common arguments - `--sdist` (`-s`): Produce just an SDist - `--wheel` (`-w`): Produce just a wheel - `-C