Container to hold information on an installable library. Parameters ---------- name : str Name of the installed library. build_info : dict Dictionary holding build information. target_dir : str Absolute path specifying where to install the library.
| 46 | 'exec_mod_from_location'] |
| 47 | |
| 48 | class InstallableLib: |
| 49 | """ |
| 50 | Container to hold information on an installable library. |
| 51 | |
| 52 | Parameters |
| 53 | ---------- |
| 54 | name : str |
| 55 | Name of the installed library. |
| 56 | build_info : dict |
| 57 | Dictionary holding build information. |
| 58 | target_dir : str |
| 59 | Absolute path specifying where to install the library. |
| 60 | |
| 61 | See Also |
| 62 | -------- |
| 63 | Configuration.add_installed_library |
| 64 | |
| 65 | Notes |
| 66 | ----- |
| 67 | The three parameters are stored as attributes with the same names. |
| 68 | |
| 69 | """ |
| 70 | def __init__(self, name, build_info, target_dir): |
| 71 | self.name = name |
| 72 | self.build_info = build_info |
| 73 | self.target_dir = target_dir |
| 74 | |
| 75 | |
| 76 | def get_num_build_jobs(): |
no outgoing calls
no test coverage detected