### What's the problem this feature will solve? ```shell pip install . ``` this commands installs all dependencies from pyproject.toml, but also it builds whole my project and installs it to ### Describe the solution you'd like can you please provide a way to install dependencies from pyproject.toml file without installing project itself ### Alternative Solutions [uv tool](https://github.com/astral-sh/uv) allows to install requirements from pyproject.toml with this command: ```shell uv pip install -r pyproject.toml ``` ### Additional context - ### Code of Conduct - [X] I agree to follow the [PSF Code of Conduct](https://www.python.org/psf/conduct/).