function docstring

This commit is contained in:
foamyguy 2023-11-04 11:15:55 -05:00
parent 7bfda3b5a5
commit b30e2a92e1

View file

@ -917,7 +917,15 @@ def get_dependencies(*requested_libraries, mod_names, to_install=()):
def get_circup_dependencies(bundle, library):
"""
something
Get the list of circup dependencies from pyproject.toml
e.g.
[circup]
circup_dependencies = ["dependency_name_here"]
:param bundle: The Bundle to look within
:param library: The Library to find pyproject.toml for and get dependencies from
:return: The list of dependency libraries that were found
"""
try:
pyproj_toml = bundle.requirements_for(library, toml_file=True)