summaryrefslogtreecommitdiff
path: root/www/py-django-smart-selects/files/patch-setup.py
blob: 4f9061c587e9c0c8f472e705d7b75d3920bd1a45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Avoid the installation of the test suite in the top-level directory
of ${PYTHON_SITELIBDIR}.

--- setup.py.orig	2024-02-12 05:03:25 UTC
+++ setup.py
@@ -14,7 +14,7 @@ setup(
     author="Patrick Lauber",
     author_email="digi@treepy.com",
     url="https://github.com/jazzband/django-smart-selects",
-    packages=find_packages(),
+    packages=find_packages(exclude=['test_app*']),
     include_package_data=True,
     python_requires=">=3.6",
     install_requires=["django>=2.2"],