可作为 Python 项目的构建后端,用于项目的构建和安装。符合标准,支持通过 pip、build 或 Hatch 等前端工具自动处理,具备可扩展性,遵循 Hatch 项目规范。【此简介由AI生成】
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 2 年前 | ||
| 11 个月前 | ||
| 11 个月前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 11 个月前 | ||
| 2 年前 | ||
| 11 个月前 |
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