1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From b8b27193b3371996cfde1783c96e505251bb98cb Mon Sep 17 00:00:00 2001
From: Colin Watson <cjwatson@debian.org>
Date: Sun, 21 Sep 2025 11:01:44 +0100
Subject: [PATCH] Remove run-time dependency on setuptools
It was needed for `pkg_resources`-style namespace packages, but that's no
longer a problem here.
--- a/setup.py
+++ b/setup.py
@@ -64,7 +64,6 @@ def read(*rnames):
license='ZPL-2.1',
python_requires='>=3.9',
install_requires=[
- 'setuptools',
'zope.interface',
],
include_package_data=True,
|