MCPcopy Create free account
hub / github.com/numpy/numpy / InstallableLib

Class InstallableLib

numpy/distutils/misc_util.py:48–73  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

46 'exec_mod_from_location']
47
48class 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
76def get_num_build_jobs():

Callers 1

add_installed_libraryMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected