the collection of cli options used to configure this build
| 16 | |
| 17 | @dataclasses.dataclass |
| 18 | class BuildConfig: |
| 19 | """ |
| 20 | the collection of cli options used to configure this build |
| 21 | """ |
| 22 | output_dir: pathlib.Path |
| 23 | output_int_dir: pathlib.Path |
| 24 | output_epub_path: pathlib.Path |
| 25 | epub_metadata_path: pathlib.Path |
| 26 | css_path: pathlib.Path |
| 27 | chapters_data_json: pathlib.Path |
| 28 | chapters_root: pathlib.Path |
| 29 | |
| 30 | @dataclasses.dataclass |
| 31 | class ChapterData: |