setup.py: Exclude test package

This commit is contained in:
Adam Jeliński 2021-06-28 11:54:10 +02:00
parent aa140d4bc4
commit aebe1c7067
1 changed files with 1 additions and 1 deletions

View File

@ -15,5 +15,5 @@ setup(
license="BSD",
python_requires="~=3.6",
include_package_data=True,
packages=find_packages(),
packages=find_packages(exclude=['test*']),
)