From 398e3621da640e51e287fe2381619e72160894ac Mon Sep 17 00:00:00 2001 From: jessikitty Date: Wed, 24 Dec 2025 02:17:29 +1100 Subject: [PATCH] Add client requirements file with pynput for global input capture --- clients/client_requirements.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 clients/client_requirements.txt diff --git a/clients/client_requirements.txt b/clients/client_requirements.txt new file mode 100644 index 0000000..2f59ebc --- /dev/null +++ b/clients/client_requirements.txt @@ -0,0 +1,14 @@ +# NFC Network Client Requirements +# Install with: pip install -r client_requirements.txt + +# GUI Framework +tkinter-tooltip>=2.2.0; sys_platform != "linux" + +# HTTP Client +requests>=2.31.0 + +# Global Input Capture - REQUIRED for background NFC scanning +pynput>=1.7.6 + +# Type hints support +typing-extensions>=4.5.0