From 9a0728d67df989e9d0f87734350fee1903aee11f Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 28 Nov 2023 12:29:16 -0500 Subject: [PATCH] fix: use setuptools.find_namespace_packages (#321) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9577cd8..c5a83c5 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ import io -from setuptools import find_packages +from setuptools import find_namespace_packages from setuptools import setup @@ -37,7 +37,7 @@ description="Google Authentication Library", long_description=long_description, url="https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib", - packages=find_packages(exclude=("tests*",)), + packages=find_namespace_packages(exclude=("tests*",)), install_requires=DEPENDENCIES, extras_require={"tool": TOOL_DEPENDENCIES}, entry_points={