From c16547beb53572134f2aeabcccdba57ee26c9008 Mon Sep 17 00:00:00 2001 From: James Braza Date: Thu, 21 Dec 2023 04:02:26 -0800 Subject: [PATCH] Using includes to filter out tests --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 7ce36c906..25155b09d 100644 --- a/python/setup.py +++ b/python/setup.py @@ -49,7 +49,7 @@ keywords=["Looker", "Looker API", "looker_sdk", "Looker API 4.0"], name=NAME, package_data={"looker_sdk": ["py.typed", "looker_sdk/looker-sample.ini"]}, - packages=find_packages(), + packages=find_packages(include=("looker_sdk",)), # restrict python to <=3.9.9 due to https://github.com/looker-open-source/sdk-codegen/issues/944 python_requires=">=3.6", url="https://pypi.python.org/pypi/looker_sdk",