Exclude tests directory from wheel builds

This commit is contained in:
Selwin Ong 2020-09-10 08:26:26 +07:00
parent e6f153ee86
commit a31d37f1ea
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ setup(
description='RQ is a simple, lightweight, library for creating background '
'jobs, and processing them.',
long_description=__doc__,
packages=find_packages(exclude=['tests']),
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
zip_safe=False,
platforms='any',