mesaport.Installer
This module defines the Installer
class, which handles MESA installation.
Attributes:
- version (str): Version of MESA to install.
- parentDir (str): Path to a directory to install MESA and MESA SDK.
- cleanAfter (bool): If True, the downloaded MESA SDK and MESA zip files will be deleted after installation. Defaults to False.
- logging (bool): If True, the installation log will be written to a file. Defaults to True.
1""" 2This module defines the `Installer` class, which handles MESA installation. 3 4Attributes: 5 version (str): Version of MESA to install. 6 parentDir (str): Path to a directory to install MESA and MESA SDK. 7 cleanAfter (bool): If True, the downloaded MESA SDK and MESA zip files will be deleted after installation. Defaults to False. 8 logging (bool): If True, the installation log will be written to a file. Defaults to True. 9""" 10from .installer import Installer