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
|
From: Colin Watson <cjwatson@debian.org>
Date: Sun, 18 Jan 2026 11:34:13 +0000
Subject: Remove run-time dependencies on setuptools and wheel
These are needed to run `setup.py` itself, but they aren't needed at
run-time so they shouldn't be in `install_requires`.
Forwarded: https://github.com/executablebooks/sphinx-togglebutton/pull/74
Bug-Debian: https://bugs.debian.org/1125786
Last-Update: 2026-01-18
---
setup.cfg | 2 --
1 file changed, 2 deletions(-)
diff --git a/setup.cfg b/setup.cfg
index 22d6c7e..f13ff9c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -15,8 +15,6 @@ classifiers =
[options]
packages = find:
install_requires =
- setuptools
- wheel
sphinx
docutils
|