Metadata-Version: 2.4
Name: dfa-runner
Version: 0.0.0
Summary: Run words through A DFA specified in a given toml file
Author-email: Christian Haastrup <chaastrup865@gmail.com>
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: toml
Dynamic: license-file

# dfaRunner

Run words through a Deterministic Finite Automaton (DFA) specified in a TOML file.

## TOML Format
Example of formatting here:

```toml
states = ["s", "q", "r"]
accept = ["q"]
start = "s"
language = ["a", "b"]
transitions = ["s-(a)->s", "s-(b)->q", "q-(a)->r", "q-(b)->q", "r-(a)->r", "r-(b)->r"]
