radiance 0.7.1

Video art software designed for live performance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: setup check run

setup:
	poetry install --all-extras

check:
	poetry run isort .
	poetry run black .
	poetry run flake8 .
	poetry run mypy .

run:
	cd .. && cargo build --profile release --bin beat_tracking_test
	poetry run pytest