Jump to letter: [
7ABCDEFGHIJKLMNOPQRSTUVWXYZ
]
python313-setuptools-reproducible - Extension of setuptools to support reproducible dists
- Description:
This is a PEP 517 Build backend enabling reproducible builds with
setuptools.
Setuptools can create reproducible wheel archives (.whl) by setting
SOURCE_DATE_EPOCH at build time, but setting the env var is
insufficient for creating reproducible sdists (.tar.gz).
Setuptools-reproducible wraps the hooks build_sdist and build_wheel
with some modifications to make reproducible builds by default:
- In the build environment, SOURCE_DATE_EPOCH=0 will be used if it
wasn't already configured.
- Tarfile modes are set to 0o644 for regular files and 0o755 for
directories.
- The uid/gid of archive members are set to 0, and the username /
groupname are set to empty string.
- Gzip header values set to source date epoch.
Packages