summaryrefslogtreecommitdiff
path: root/textproc/py-sphinxcontrib-autoprogram/files/patch-setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/py-sphinxcontrib-autoprogram/files/patch-setup.py')
-rw-r--r--textproc/py-sphinxcontrib-autoprogram/files/patch-setup.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/textproc/py-sphinxcontrib-autoprogram/files/patch-setup.py b/textproc/py-sphinxcontrib-autoprogram/files/patch-setup.py
new file mode 100644
index 000000000000..cf8fe25ae54d
--- /dev/null
+++ b/textproc/py-sphinxcontrib-autoprogram/files/patch-setup.py
@@ -0,0 +1,21 @@
+--- setup.py.orig 2024-04-07 02:53:48 UTC
++++ setup.py
+@@ -3,7 +3,7 @@ from __future__ import with_statement
+
+ import sys
+
+-from setuptools import setup, find_packages
++from setuptools import find_namespace_packages, setup, find_packages
+
+
+ # Do not change the variable name. It's parsed by doc/conf.py script.
+@@ -49,8 +49,7 @@ setup(
+ ],
+ python_requires='>=3.8',
+ platforms='any',
+- packages=find_packages(),
+- namespace_packages=['sphinxcontrib'],
++ packages=find_namespace_packages(include=['sphinxcontrib']),
+ include_package_data=True,
+ install_requires=requires,
+ test_suite='sphinxcontrib.autoprogram.suite'