mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 08:49:15 -04:00
* Also assume maintainership. Changelog since 1.2.2: https://github.com/jimfunk/django-postgresql-netfields/blob/v1.2.4/CHANGELOG PR: 258461 Approved by: maintainer timeout (+14 days) MFH: 2021Q4
14 lines
415 B
Python
14 lines
415 B
Python
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,
|