Metadata-Version: 2.1
Name: build
Version: 0.0.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'

# python-build

A simple, correct PEP517 package builder.

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

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

optional arguments:
  -h, --help            show this help message and exit
  --verbose, -v         enable verbose output
  --sdist, -s           build a source package
  --wheel, -w           build a wheel
  --outdir ./dist, -o ./dist
                        output directory
```

