I used poetry for multiple projects already and I quite like it because it makes version management really straightforward and you can just go like
poetry new foo
And it will setup all the basic stuff for you right away. Having all the project dependecies and Metadata in pyproject.toml makes sense and reduces cognitive overload. Having poetry manage your venvs autmagically is a good extra.
There is still room for improvement, e.g. I had some trouble with their install script at times (python vs python3)
Why spend time tweaking the setup when you can just get it right in the first place with less work?