VLC-based media player that syncs with other players using Movie Night Server.
- Python 3.7
- VLC
PyQt 5.13.0 does not bundle correctly with PyInstaller, so PyQt requirement has been frozen <5.13.0.
Virtual environment should be created before installing or bundling the application.
python -m venv venv
venv\Scripts\activate
python -m pip install -U pip setuptools
-e
allows editing the application without having to reinstall it.
pip install -e .
movienight
Movie Night.exe
is generated in dist
.
pip install -e .[bundle]
pyinstaller main.spec
TODO
This project uses Black for code formatting.
pip install black
black .