from typing import List, Optional, Union from .enums import NamingScheme, License from .generic_text import GenericText class FormattingConfig: def __init__(self): self._naming_scheme: Union[NamingScheme, str] = NamingScheme.clean self._license: Optional[List[License]] = None self._extra_header: List[str] = [] self._include_extra_header: bool = True self._include_build_time: bool = False self._include_pytex_version: bool = False self._include_pytex_info_text: bool = False self._include_repo_version: bool = False self._include_repo_info_text: bool = False self._include_drv: bool = True self._include_ins: bool = True self._use_docstrip_guards: Optional[List[str]] = None self._author: Optional[str] = None self._licenses = Optional[List[GenericText]] self._extra_header_file: Optional[GenericText] = None self._pytex_version: Optional[str] = None self._pytex_info_text: Optional[GenericText] = None self._repo_version: Optional[str] = None self._repo_info_text: Optional[GenericText] = None def merge_with(self, other): """ Merges the other config into this one :param other: :return: self """ return self class DocFormattingConfig: def __init__(self): self._documents: Optional[List[str]] = None self._dependencies: Optional[List[str]] = None