Skip to content

Commit

Permalink
function docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
FoamyGuy committed Nov 4, 2023
1 parent 7bfda3b commit b30e2a9
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion circup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b30e2a9

Please sign in to comment.