Hi, I submit a proposal to allow exporting project dependencies as a wheelhouse 👋
This is useful for reproducibility (ref: pip/repeatable-installs).
Actually with poetry we need to do this:
$ poetry export --format requirements.txt --output wheelhouse/requirements.txt
$ poetry run pip wheel --no-deps --wheel-dir wheelhouse/ --requirement wheelhouse/requirements.txt
For exemple, this can be achieve with:
$ poetry bundle wheels /path/to/wheelhouse
I don't know if this plugin should handle this use case, I'm open to feedback 🙂
Hi, I submit a proposal to allow exporting project dependencies as a wheelhouse 👋
This is useful for reproducibility (ref: pip/repeatable-installs).
Actually with poetry we need to do this:
$ poetry export --format requirements.txt --output wheelhouse/requirements.txt $ poetry run pip wheel --no-deps --wheel-dir wheelhouse/ --requirement wheelhouse/requirements.txtFor exemple, this can be achieve with:
I don't know if this plugin should handle this use case, I'm open to feedback 🙂