Metadata-Version: 2.4
Name: autombist
Version: 0.3.0
Summary: MBIST wrapper and fault-flow generator
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: jinja2>=3.1
Requires-Dist: pyyaml>=6.0
Requires-Dist: typer[all]>=0.12
Description-Content-Type: text/markdown

# autombist

autombist packages the MBIST generator as an installable Python project with a single CLI entry point.

## Installation

Install into your active environment from the repository root:

```bash
python -m pip install .
```

For editable development installs:

```bash
python -m pip install -e .
```

## Usage

Generate the default wrapper artifacts:

```bash
autombist --config config.yml --out out
```

Enable saboteur fault generation and emit the module-local fault simulation Makefile:

```bash
autombist --config config.yml --out out --test --faults 50 --seed 1234
```

Inspect the available options with:

```bash
autombist --help
```