Merge full branch: bring in src/ directory and update project structure

This commit is contained in:
Pi User
2025-10-01 20:48:28 +13:00
15 changed files with 3133 additions and 781 deletions

18
Pipfile
View File

@@ -5,6 +5,14 @@ name = "pypi"
[packages]
websockets = "*"
spidev = "*"
watchfiles = "*"
async-tkinter-loop = "*"
mido = "*"
python-rtmidi = "*"
pyaudio = "*"
aubio = "*"
websocket-client = "*"
[dev-packages]
@@ -12,5 +20,11 @@ websockets = "*"
python_version = "3.12"
[scripts]
run = 'watchfiles "python main.py" main.py networking.py settings.py color_utils.py'
run = "python src/main.py"
ui = "python src/ui_client.py"
control = "python src/control_server.py"
sound = "python src/sound.py"
dev-ui = 'watchfiles "python src/ui_client.py" src'
dev-control = 'watchfiles "python src/control_server.py" src'
install = "pipenv install"
send-json = "python test/send_json.py"