Metadata-Version: 2.1
Name: build
Version: 0.0.3.1
Summary: python-build - A simple, correct PEP517 package builder
Home-page: https://github.com/FFY00/python-build
License: UNKNOWN
Author: Filipe Laíns
Author-email: lains@archlinux.org
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires-Dist: toml
Requires-Dist: pep517
Requires-Dist: packaging
Requires-Dist: importlib_metadata;python_version<"3.8"
Requires-Dist: typing;python_version<"3"
Requires-Dist: pytest ; extra == "test"
Requires-Dist: pytest-mock ; extra == "test"
Requires-Dist: pytest-cov ; extra == "test"
Provides-Extra: test

# python-build ![checks](https://github.com/FFY00/python-build/workflows/checks/badge.svg) ![tests](https://github.com/FFY00/python-build/workflows/tests/badge.svg) [![codecov](https://codecov.io/gh/FFY00/python-build/branch/master/graph/badge.svg)](https://codecov.io/gh/FFY00/python-build) [![Documentation Status](https://readthedocs.org/projects/python-build/badge/?version=latest)](https://python-build.readthedocs.io/en/latest/?badge=latest) [![PyPI version](https://badge.fury.io/py/build.svg)](https://pypi.org/project/build/)

A simple, correct PEP517 package builder.

```sh
$ python -m build -h
usage: python -m build [-h] [--sdist] [--wheel] [--outdir ./dist] [--skip-dependencies] [.]

positional arguments:
  .                     source directory (defaults to current directory)

optional arguments:
  -h, --help            show this help message and exit
  --sdist, -s           build a source package
  --wheel, -w           build a wheel
  --outdir ./dist, -o ./dist
                        output directory
  --skip-dependencies, -x
                        does not check for the dependencies
```

See the [documentation](https://python-build.readthedocs.io/en/latest/) for more information.

