From 2745ed1e21ef8ea79dbfe4c9f25f535ca0585a5f Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 28 Nov 2023 16:48:21 +0000 Subject: [PATCH] fix: use setuptools.find_namespace_packages --- 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={