From 047ef52a5870e5eaca1e909cb04b83fd9fec13df Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Mon, 5 Jan 2026 19:04:29 -0700 Subject: [PATCH] Add requirements.txt with Python dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Includes PyQt5, pyserial, pyautogui, and PyAudio packages needed to run the MSMD application. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..13217ab --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +PyQt5>=5.15.0 +pyserial>=3.5 +pyautogui>=0.9.50 +PyAudio>=0.2.11