aboutsummaryrefslogtreecommitdiff
path: root/www/py-django-netfields/files/patch-setup.py
blob: 8be759bbb9f63de63264700206f925ab592268d9 (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	2021-09-12 11:44:16 UTC
+++ setup.py
@@ -33,7 +33,7 @@ setup(
     author=u'James Oakley',
     author_email='jfunk@funktronics.ca',
 
-    packages=find_packages(),
+    packages=find_packages(exclude=['test*']),
     include_package_data=True,
     zip_safe=False,
     install_requires=requirements,