This is still in development, but this is the current state of it.
To get it going: (run this in an admin terminal if you're on Windows)
python3 -m venv venv
# If you're on macOS/Linux
. .venv/bin/activate
# If you're on Windows using PowerShell
.\venv\Scripts\Activate.ps1
# CMD
.\venv\Scripts\Activate.bat
# All
pip3 install -r requirements.txt
# Windows
.\venv\Scripts\python3.exe main.py
# macOS
sudo python3 main.pyHere is the Shortcut that goes along with this.