From 309efe074b24d9964dd7d2b767e85d533d526006 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Tue, 26 Aug 2025 19:04:43 +0200 Subject: [PATCH] build(pyproject.toml): add `flask-socketio` depedency --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cc3b557..199cbdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,11 @@ description = "The backbone of the remote PC fleet management system." readme = "README.md" authors = [] requires-python = ">=3.13" -dependencies = ["flask>=3.1.1", "flask-login>=0.6.3"] +dependencies = [ + "flask>=3.1.1", + "flask-login>=0.6.3", + "flask-socketio>=5.5.1", +] license = { text = "GPL-3.0+" } [dependency-groups]