Can dependency graph detect dependencies from pyproject.toml's build-system.requires ? #50619
-
Select Topic AreaProduct Feedback BodyAccording to PEP621, a python project can have a [build-system]
requires = ["setuptools_scm[toml] >= 6.2"]
build-backend = "setuptools.build_meta" the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I'd say that now, this might even make more sense and be more important than the other supported files ( Edit: Just checked again, and |
Beta Was this translation helpful? Give feedback.
-
This seems like a pretty important feature to incorporate. |
Beta Was this translation helpful? Give feedback.
I'd say that now, this might even make more sense and be more important than the other supported files (
requirements.txt
,pipfile
,pipfile.lock
,setup.py
), since as far as I know,pyproject.toml
is now the officially recommended place to keep this info.Edit: Just checked again, and
pyproject.toml
is listed there, but under Poetry. I wonder if it means it'll only be read correctly if it's being used together with Poetry, though.