Bubu Blog: ~/misc $ ls

相关名词

相关项目

build

https://build.pypa.io/en/stable/

打包前端,使用命令行: python -m build。默认情况下,根据 {srcdir} 构建 {sdist},再使用 {sdist} 构建 wheel 文件。

installer

https://installer.pypa.io/en/stable/

用于从 wheel 分发文件中安装一个 Python 包的底层库。有如下基本功能:

cli 命令(来自 AOSC 社区的 autobuild4):

python3 \
    -m installer \
    --destdir="$PKGDIR" \
    "$SRCDIR"/dist/*.whl

flit

https://github.com/pypa/flit

flit 是用来辅助打包的,简化打包、上传 Pypi 的流程。