From 90439ab7d48c8e6cd679bee3b5fb071bb69776f4 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Fri, 18 Feb 2022 15:38:43 -0700 Subject: [PATCH] fix: remove tests directory from wheel (#121) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: remove tests directory from wheel Fixes #120 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 35c707e..368d69e 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ author_email="googleapis-packages@google.com", license="Apache 2.0", url="https://github.com/googleapis/python-org-policy", - packages=setuptools.PEP420PackageFinder.find(), + packages=setuptools.PEP420PackageFinder.find(exclude=["tests*"]), namespace_packages=("google", "google.cloud"), platforms="Posix; MacOS X; Windows", include_package_data=True,