-
|
I am looking for a way to updated the I have a callable function that hooks into the The Am I completely misunderstanding this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
--makes me think setuptools will overwrite |
Beta Was this translation helpful? Give feedback.
Upon further research I found that I can bind a function to an object:
So,
_dependencies()from setuptools will now callinstall_requires_setterwith the dependencies listed in pyproject.toml, andinstall_requires_settercan add some other packages to that list.Edit: For comp…