Mini egglog in Python
Python 3.10 or later.
To avoid affecting your regular Python environment, first set up a virtual environment.
$ python3 -m venv .venv
Now activate your new virtual environment.
$ source ./venv/bin/activate
Next install dependencies.
$ pip3 install -r requirements.txt
Finally run tests to make sure everything is working.
$ make test