internal/tools/: hatchling-1.24.2 metadata and description
Modern, extensible Python build backend
author_email | Ofek Lev <oss@ofek.dev> |
classifiers |
|
description_content_type | text/markdown |
keywords | build,hatch,packaging |
project_urls |
|
requires_dist |
|
requires_python | >=3.8 |
File | Tox results | History |
---|---|---|
hatchling-1.24.2-py3-none-any.whl
|
|
|
hatchling-1.24.2.tar.gz
|
|
Hatchling
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