Menu

Tree [25e908] debian/bookworm-backports debian/1.27.0-1_bpo12+1 /
 History

HTTPS access


File Date Author Commit
 debian 2025-06-26 Philipp Huebner Philipp Huebner [25e908] Release 1.27.0-1~bpo12+1
 src 2024-12-21 Stefano Rivera Stefano Rivera [0ba3ff] New upstream version 1.27.0
 tests 2023-12-20 Stefano Rivera Stefano Rivera [16c7fe] New upstream version 1.21.0
 .gitignore 2023-12-20 Stefano Rivera Stefano Rivera [16c7fe] New upstream version 1.21.0
 LICENSE.txt 2022-02-09 Stefano Rivera Stefano Rivera [c65cd0] Import Upstream version 0.11.2
 PKG-INFO 2024-12-21 Stefano Rivera Stefano Rivera [0ba3ff] New upstream version 1.27.0
 README.md 2023-12-20 Stefano Rivera Stefano Rivera [16c7fe] New upstream version 1.21.0
 pyproject.toml 2024-11-15 Stefano Rivera Stefano Rivera [1f0965] New upstream version 1.26.3

Read Me

Hatchling

Hatch logo | | | | --- | --- | | Package | [![PyPI - Version](https://img.shields.io/pypi/v/hatchling.svg?logo=pypi&label=PyPI&logoColor=gold)](https://pypi.org/project/hatchling/) [![PyPI - Downloads](https://img.shields.io/pypi/dm/hatchling.svg?color=blue&label=Downloads&logo=pypi&logoColor=gold)](https://pypi.org/project/hatchling/) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/hatchling.svg?logo=python&label=Python&logoColor=gold)](https://pypi.org/project/hatchling/) | | Meta | [![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch) [![linting - Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) [![code style - Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![types - Mypy](https://img.shields.io/badge/types-Mypy-blue.svg)](https://github.com/python/mypy) [![License - MIT](https://img.shields.io/badge/license-MIT-9400d3.svg)](https://spdx.org/licenses/) [![GitHub Sponsors](https://img.shields.io/github/sponsors/ofek?logo=GitHub%20Sponsors&style=social)](https://github.com/sponsors/ofek) |

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