1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
From 15414c0951bc731bca4a1145e310cc70b8c6c997 Mon Sep 17 00:00:00 2001
From: Ricardo Ribalda <ribalda@ribalda.com>
Date: Wed, 21 Jan 2026 10:47:38 +0100
Subject: [PATCH] setup.py: Remove setuptools from install_requires
Setuptools are just required for build/instlal not for runtime.
https://packaging.python.org/en/latest/discussions/install-requires-vs-requirements/
Context: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1125855
Forwarded: yes
Signed-off-by: Ricardo Ribalda <ribalda@ribalda.com>
---
setup.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/setup.py b/setup.py
index c4af6c3..7455def 100755
--- a/setup.py
+++ b/setup.py
@@ -145,7 +145,6 @@ setup(
install_requires=[
"argcomplete",
"requests",
- "setuptools",
],
extras_require={
"mcp": [
--
2.47.3
|