Feature Request
Poetry (v0.12.15) makes different sdist archives by each build command invoke. It`s poor.
Would be great if poetry generated reproducible sdists for concrete SCM commits (with identical checksums!).
In my setup.py-based projects i achieve this behaviour by setuptools.command.sdist substitution, where:
- use bz2 archiver (gzip store current timestamp in archive)
- sort archive items by path
- assign owner/group of tar items to root:root
- assign archive items timestamps from SCM (Mercurial, Git) commit metadata
Feature Request
Poetry (v0.12.15) makes different sdist archives by each build command invoke. It`s poor.
Would be great if poetry generated reproducible sdists for concrete SCM commits (with identical checksums!).
In my setup.py-based projects i achieve this behaviour by setuptools.command.sdist substitution, where: