poetry-plugin-export icon indicating copy to clipboard operation
poetry-plugin-export copied to clipboard

Poetry plugin to export the dependencies to various formats

Results 79 poetry-plugin-export issues
Sort by recently updated
recently updated
newest added

- **Poetry version**: 1.5.1 - **Python version**: 3.10 - **OS version and name**: Ubuntu 20.04.6 - **pyproject.toml**: ```toml [tool.poetry] name = "mypkg" version = "0.1.0" description = "" authors =...

In my project I need to exclude a list of specified packages with their dependencies when exporting. Then I use exported requirements.txt to install all exported deps and install a...

`poetry export` and `poetry install` have the following identical arguments and documentation: * `--without`: The dependency groups to ignore. (multiple values allowed) * `--with`: The optional dependency groups to include....

I am using the following pre-commit hook: ``` yaml - repo: https://github.com/python-poetry/poetry rev: '1.6.0' # add version here hooks: - id: poetry-check args: [--no-cache] language_version: python3.9 - id: poetry-lock args:...

Greetings. As far as I can see, the export is not carrying the --no-binary option for selected packages. For instance, we have a package wide configuration such as this $...

The poetry-expory hook is quite useful but shouldn't it return an error when it actually detects any changes? I want to use it alongside poetry-lock hook which does in fact...

This is built on top of #103 (so that needs to be finished first), but needing feedback on the design of these options.

Note: 1) poetry depends on poetry-plugin-export https://github.com/python-poetry/poetry/blob/master/pyproject.toml#L36 2) poetry-plugin-export depends on poetry https://github.com/python-poetry/poetry-plugin-export/blob/main/pyproject.toml#L21 This prevents bazel, which is circular-dependency-phobic, from building targets which depend on poetry. I believe the motivation...

- [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this repo and believe that this is not a duplicate. - [x] I have searched the [FAQ](https://python-poetry.org/docs/faq/) and general [documentation](https://python-poetry.org/docs/) and believe...

- [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this repo and believe that this is not a duplicate. - [x] I have searched the [documentation](https://python-poetry.org/docs/) and believe that my question...

enhancement