Give AlbumentationsX a star on GitHub — it powers this leaderboard

Star on GitHub

hatchling

Modern, extensible Python build backend

Downloads: 0 (30 days)

Description

Hatchling

<div align="center"> <img src="https://raw.githubusercontent.com/pypa/hatch/master/docs/assets/images/logo.svg" alt="Hatch logo" width="500" role="img">
PackagePyPI - Version PyPI - Downloads PyPI - Python Version
MetaHatch project linting - Ruff code style - Black types - Mypy License - MIT GitHub Sponsors
</div>

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