In Poetry I export all the dependencies including the dev ones using the following command:
poetry export --with=dev --format=requirements.txt --without-hashes --output=requirements-dev.txt
I've tried to do the same thing with uv but it doesn't export dev dependencies:
uv pip compile pyproject.toml --universal --no-annotate --no-header -o requirements-dev.txt
Is it somehow possible?