I would like to understand current state of Python build systems and requirements management.
Imagine, that I checked out sources of some project that is using poetry (or pipenv). And this project has pyproject.toml
file with build system specified. Of course I can look into pyproject, see that this one is using Poetry, install poetry and run poetry install
, but I would like to avoid it.
Question: Is there a build-system-agnostic way to build Python project?
By "build" I mean install all the necessary requirements for the project to be run in-place.
With requirements.txt
I would achieve that by running pip install -r requirements.txt
.