1#!/usr/bin/env python3
2
3"""Configuration options for the `alg` module."""
4
5from chart.common.path import Path
6
7# dispatcher workorder filename
8WORKORDER_FILENAME = Path('workorder.xml')
9
10# dispatcher result filename
11RESULT_FILENAME = Path('result.xml')
12
13# report entry point
14REPORT_FILENAME = Path('report.html')
15
16# standard dispatcher log filename
17LOG_FILENAME = Path('log.txt')
18
19# keep anything written to stdout (should be nothing for a well behaved algorithm)
20STDOUT_FILENAME = Path('stdout.txt')
21
22# keep anything written to stderr (should be nothing for a well behaved algorithm)
23STDERR_FILENAME = Path('stderr.txt')
24
25# record of raised events for dispatching algorithms which can raise them
26EVENTS_FILENAME = Path('events.xml')
27
28# standard css filename
29REPORT_CSS_BASENAME = Path('report.css')
30
31# report metadata file
32MANIFEST_FILENAME = Path('manifest.xml')