From 797c38e31ba4d96d00a7be567a4351979a28de56 Mon Sep 17 00:00:00 2001 From: Hernan Monserrat <16483541+hemonserrat@users.noreply.github.com> Date: Fri, 12 Sep 2025 17:39:33 -0700 Subject: [PATCH] fix: inline dependencies in setup.py to resolve build error --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ac29a85..d1485c2 100644 --- a/setup.py +++ b/setup.py @@ -8,9 +8,12 @@ with open("README.md", encoding="utf-8") as fh: long_description = fh.read() -# Read requirements -with open("requirements.txt", encoding="utf-8") as fh: - requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")] +# Dependencies +requirements = [ + "cryptography>=3.4.8", + "python-gnupg>=0.5.0", + "pathspec>=0.9.0", +] setup( name="git-safe",