$NetBSD: patch-setup.py,v 1.1 2021/01/16 09:41:57 adam Exp $ Do not install tests. --- setup.py.orig 2021-01-16 09:34:19.000000000 +0000 +++ setup.py @@ -50,7 +50,7 @@ setup( description='A file management application for django that makes handling ' 'of files and images a breeze.', long_description=open('README.rst').read(), - packages=find_packages(), + packages=find_packages(exclude=['tests*']), include_package_data=True, zip_safe=False, install_requires=REQUIREMENTS,