Source code for pychum.engine.eon._dataclasses
from dataclasses import dataclass
from pathlib import Path
[docs]
@dataclass
class NWChemSocketConfig:
atoms: list[NWChemAtom]
settings_path: Path
socket_address: str
unix_mode: bool = False
mem_in_gb: int = 2
output_path: Path = Path("nwchem_socket.nwi")