Metadata-Version: 2.4
Name: build
Version: 1.0.3
Summary: A simple, correct Python build frontend
Author-email: Filipe Laíns <lains@riseup.net>, Bernát Gábor <gaborjbernat@gmail.com>, layday <layday@protonmail.com>, Henry Schreiner <henryschreineriii@gmail.com>
License: Copyright © 2019 Filipe Laíns <filipe.lains@gmail.com>
        
        Permission is hereby granted, free of charge, to any person obtaining a
        copy of this software and associated documentation files (the "Software"),
        to deal in the Software without restriction, including without limitation
        the rights to use, copy, modify, merge, publish, distribute, sublicense,
        and/or sell copies of the Software, and to permit persons to whom the
        Software is furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice (including the next
        paragraph) shall be included in all copies or substantial portions of the
        Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
        THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
        FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
        DEALINGS IN THE SOFTWARE.
        
Project-URL: homepage, https://github.com/pypa/build
Project-URL: changelog, https://pypa-build.readthedocs.io/en/stable/changelog.html
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
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 :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >= 3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: packaging>=19.0
Requires-Dist: pyproject_hooks
Requires-Dist: colorama; os_name == "nt"
Requires-Dist: importlib-metadata>=4.6; python_version < "3.10"
Requires-Dist: tomli>=1.1.0; python_version < "3.11"
Provides-Extra: docs
Requires-Dist: furo>=2023.08.17; extra == "docs"
Requires-Dist: sphinx~=7.0; extra == "docs"
Requires-Dist: sphinx-argparse-cli>=1.5; extra == "docs"
Requires-Dist: sphinx-autodoc-typehints>=1.10; extra == "docs"
Requires-Dist: sphinx-issues>=3.0.0; extra == "docs"
Provides-Extra: test
Requires-Dist: filelock>=3; extra == "test"
Requires-Dist: pytest>=6.2.4; extra == "test"
Requires-Dist: pytest-cov>=2.12; extra == "test"
Requires-Dist: pytest-mock>=2; extra == "test"
Requires-Dist: pytest-rerunfailures>=9.1; extra == "test"
Requires-Dist: pytest-xdist>=1.34; extra == "test"
Requires-Dist: wheel>=0.36.0; extra == "test"
Requires-Dist: setuptools>=42.0.0; python_version < "3.10" and extra == "test"
Requires-Dist: setuptools>=56.0.0; python_version == "3.10" and extra == "test"
Requires-Dist: setuptools>=56.0.0; python_version == "3.11" and extra == "test"
Requires-Dist: setuptools>=67.8.0; python_version >= "3.12" and extra == "test"
Provides-Extra: typing
Requires-Dist: importlib-metadata>=5.1; extra == "typing"
Requires-Dist: mypy~=1.5.0; extra == "typing"
Requires-Dist: tomli; extra == "typing"
Requires-Dist: typing-extensions>=3.7.4.3; extra == "typing"
Provides-Extra: virtualenv
Requires-Dist: virtualenv>=20.0.35; extra == "virtualenv"
Dynamic: license-file
Dynamic: requires-python

# 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://pypa-build.readthedocs.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://pypa-build.readthedocs.io/en/latest/) 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://pypa-build.readthedocs.io/en/latest/) for full information.

### Code of Conduct

Everyone interacting in the build's codebase, issue trackers, chat rooms, and mailing lists is expected to follow
the [PSF Code of Conduct].

[psf code of conduct]: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md
