yambs.dependency.manager
index
/home/vkottler/src/vkottler/workspace/yambs/yambs/dependency/manager.py

A module implementing a dependency manager.

 
Classes
       
builtins.object
DependencyManager

 
class DependencyManager(builtins.object)
    DependencyManager(root: pathlib.Path, project_root: pathlib.Path) -> None
 
A class for managing project dependencies.
 
  Methods defined here:
__init__(self, root: pathlib.Path, project_root: pathlib.Path) -> None
Initialize this instance.
audit(self, dep: yambs.dependency.config.Dependency) -> yambs.dependency.state.DependencyState
Interact with a dependency if needed.
info(self, logger: Union[logging.Logger, logging.LoggerAdapter[Any]]) -> None
Log some information.
save(self, script: pathlib.Path, logger: Union[logging.Logger, logging.LoggerAdapter[Any]] = None) -> None
Save state data and create the third-party build script.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
Functions
       
write_third_party_script(path: pathlib.Path, commands: List[List[str]] = None) -> None
Create a simple shell script normally containing instructions to build
third-party commands.

 
Data
        ARBITER = <vcorelib.io.arbiter.DataArbiter object>
DependencyData = typing.Dict[str, typing.Any]
HANDLERS = {<DependencyKind.YAMBS: 'yambs'>: <function yambs_handler>}
List = typing.List
LoggerType = typing.Union[logging.Logger, logging.LoggerAdapter[typing.Any]]
Set = typing.Set