Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
/ faery Public archive

CLI and Python library to convert, crop, and render event recordings.

License

Notifications You must be signed in to change notification settings

neuromorphicsystems/faery

Repository files navigation

Contribute

Local build (first run).

python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install maturin numpy
maturin develop  # or maturin develop --release to build with optimizations

Local build (subsequent runs).

cd python
source .venv/bin/activate
maturin develop  # or maturin develop --release to build with optimizations

After changing any of the files in framebuffers.

flatc --rust -o src/aedat/ flatbuffers/*.fbs

Before pushing new code, run the following to lint and format it.

cd python
isort .; black .; pyright .