- Created Flask backend with REST API endpoints - Built HTML/CSS/JavaScript frontend - Replaced RGB sliders with color pickers for each palette color - Reorganized layout: color palette on left, patterns on right - Added persistence for color changes - Integrated WebSocket client for lighting controller communication - Added tab management, profile support, and pattern selection
27 lines
416 B
TOML
27 lines
416 B
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[packages]
|
|
websockets = "*"
|
|
watchfiles = "*"
|
|
async-tkinter-loop = "*"
|
|
mido = "*"
|
|
python-rtmidi = "*"
|
|
pyaudio = "*"
|
|
aubio = "*"
|
|
websocket-client = "*"
|
|
flask = "*"
|
|
flask-cors = "*"
|
|
|
|
[dev-packages]
|
|
|
|
[requires]
|
|
python_version = "3.12"
|
|
|
|
[scripts]
|
|
main = "python src/main.py"
|
|
dev = 'watchfiles "python src/main.py" src'
|
|
web = "python run_web.py"
|