Metadata-Version: 2.4
Name: artefacts_toolkit_rerun
Version: 0.1.0
Summary: Artefacts Toolkit helpers for recording and asserting on Rerun (.rrd) recordings
Author-email: TN <tomo@artefacts.com>
Project-URL: Homepage, https://github.com/art-e-fact/artefacts-toolkit-rerun
Project-URL: Bug Tracker, https://github.com/art-e-fact/artefacts-toolkit-rerun/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: rerun-sdk<0.38.0,>=0.37.0
Requires-Dist: pyarrow>=18.0.0
Requires-Dist: numpy>=2
Requires-Dist: datafusion==54.0.0
Requires-Dist: pandas
Requires-Dist: av
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: setuptools-scm; extra == "dev"
Requires-Dist: twine; extra == "dev"

# Artefacts Toolkit (Rerun Helpers)

A part of the Artefacts Toolkit, this package contains helpers for tests that record a [Rerun](https://rerun.io) `.rrd` file during a simulation and then make their assertions against that recording.

Primarily designed to be used with Artefacts, the package can also be used standalone.

[Documentation](https://docs.artefacts.com/artefacts-toolkit/rerun/)

## Usage
```
from artefacts_toolkit_rerun import recorder, reader, video
```

## Development

```
python -m venv venv && venv/bin/pip install -e ".[dev]"
venv/bin/pytest
```
