1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Alexandre Detiste <tchet@debian.org>
Date: Sat, 13 Sep 2025 11:27:46 +0200
Subject: Do not depend on setuptools at install time
Set a dependency on setuptools at least at install time will also pull
in python3-pkg-resources.
---
setup.cfg | 1 -
1 file changed, 1 deletion(-)
diff --git a/setup.cfg b/setup.cfg
index d17f637..8f592d1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -56,7 +56,6 @@ include_package_data = True
zip_safe = True
install_requires =
distro>=1.3.0
- setuptools>=39.0
[options.extras_require]
docs =
|