Metadata-Version: 2.1
Name: build
Version: 0.5.1
Summary: A simple, correct PEP517 package builder
Home-page: UNKNOWN
Author: Filipe Laíns
Author-email: lains@riseup.net
License: MIT
Project-URL: homepage, https://github.com/pypa/build
Project-URL: changelog, https://pypa-build.readthedocs.io/en/stable/changelog.html
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: !=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: packaging (>=19.0)
Requires-Dist: pep517 (>=0.9.1)
Requires-Dist: toml (>=0.10.0)
Requires-Dist: colorama ; os_name == "nt"
Requires-Dist: typing (>=3.5.3.0) ; python_version < "3"
Requires-Dist: virtualenv (>=20.0.35) ; python_version < "3"
Requires-Dist: importlib-metadata (>=0.22) ; python_version < "3.8"
Provides-Extra: docs
Requires-Dist: furo (>=2020.11.19b18) ; extra == 'docs'
Requires-Dist: sphinx (~=3.0) ; extra == 'docs'
Requires-Dist: sphinx-argparse-cli (>=1.5) ; extra == 'docs'
Requires-Dist: sphinx-autodoc-typehints (>=1.10) ; extra == 'docs'
Provides-Extra: test
Requires-Dist: filelock (>=3) ; extra == 'test'
Requires-Dist: pytest (>=4) ; extra == 'test'
Requires-Dist: pytest-cov (>=2) ; extra == 'test'
Requires-Dist: pytest-mock (>=2) ; extra == 'test'
Requires-Dist: pytest-rerunfailures (>=8.0) ; extra == 'test'
Requires-Dist: pytest-xdist (>=1.34) ; extra == 'test'
Requires-Dist: setuptools (>=42.0.0) ; extra == 'test'
Requires-Dist: wheel (>=0.36.0) ; extra == 'test'
Requires-Dist: pathlib2 (>=2.0.0) ; (python_version < "3") and extra == 'test'
Provides-Extra: typing
Requires-Dist: mypy (==0.800) ; extra == 'typing'
Requires-Dist: typing-extensions (>=3.7.4.3) ; extra == 'typing'
Provides-Extra: virtualenv
Requires-Dist: virtualenv (>=20.0.35) ; extra == 'virtualenv'

# build

[![CI check](https://github.com/pypa/build/workflows/check/badge.svg)](https://github.com/pypa/build/actions)
[![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&style=flat-square)](https://discord.gg/pypa)

A simple, correct PEP517 package builder.

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


