From 88bba5c44972c1a7fb2a6ca554d1148f45c842c3 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Thu, 28 Aug 2025 19:42:52 +0200 Subject: [PATCH] build(pyproject.toml): add depedency on judas_protocol --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a04f6a3..486fe01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,9 @@ description = "A client for judas, a remote PC fleet management system." readme = "README.md" authors = [] requires-python = ">=3.13" -dependencies = [] +dependencies = [ + "judas-protocol", +] license = { text = "GPL-3.0+" } [dependency-groups] @@ -81,3 +83,6 @@ allowed_tags = [ minor_tags = ["feat"] patch_tags = ["fix", "perf"] default_bump_level = 0 + +[tool.uv.sources] +judas-protocol = { git = "https://gitea.pufereq.pl/judas/judas_protocol.git" }