pypa-hatch/backend
Dimitri Papadopoulos Orfanos ae8c3fbd68
Apply ruff rule RUF101 (#1501)
RUF101 `PGH001` is a redirect to `S307`
2024-05-18 21:34:50 -04:00
..
scripts Update style (#1040) 2023-11-13 00:09:31 -05:00
src/hatchling Apply ruff rule RUF101 (#1501) 2024-05-18 21:34:50 -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