pypa-hatch/backend
Henry Schreiner 03655c5d9d
fix: swap default for macos-max-compat (#1450)
2024-05-23 00:20:11 -04:00
..
scripts Update style (#1040) 2023-11-13 00:09:31 -05:00
src/hatchling fix: swap default for macos-max-compat (#1450) 2024-05-23 00:20:11 -04:00
tests Upgrade Ruff (#1085) 2023-12-05 13:14:00 -05:00
LICENSE.txt update licenses 2022-02-04 20:33:48 -05:00
README.md Update links to the new `ruff` project location (#886) 2023-06-17 16:24:32 -04:00
pyproject.toml Bump packging version to >=23.2 (#1384) 2024-04-13 12:10:42 -04:00

README.md

Hatchling

Hatch logo
Package PyPI - Version PyPI - Downloads PyPI - Python Version
Meta Hatch project linting - Ruff code style - Black types - Mypy License - MIT GitHub Sponsors

This is the extensible, standards compliant build backend used by Hatch.

Usage

The following snippet must be present in your project's pyproject.toml file in order to use Hatchling as your build backend:

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

Then a build frontend like pip, build, or Hatch itself can build or install your project automatically:

# install using pip
pip install /path/to/project

# build
python -m build /path/to/project

# build with Hatch
hatch build /path/to/project

Documentation