Go to file
su-fang 387752ecbf changed debian/source/format to native 2023-02-14 15:55:42 +08:00
debian changed debian/source/format to native 2023-02-14 15:55:42 +08:00
scripts Import Upstream version 1.12.2 2023-02-14 15:55:41 +08:00
src/hatchling Import Upstream version 1.12.2 2023-02-14 15:55:41 +08:00
tests Import Upstream version 1.12.2 2023-02-14 15:55:41 +08:00
.gitignore Import Upstream version 1.12.2 2023-02-14 15:55:41 +08:00
LICENSE.txt Import Upstream version 1.12.2 2023-02-14 15:55:41 +08:00
PKG-INFO Import Upstream version 1.12.2 2023-02-14 15:55:41 +08:00
README.md Import Upstream version 1.12.2 2023-02-14 15:55:41 +08:00
pyproject.toml Import Upstream version 1.12.2 2023-02-14 15:55:41 +08: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