Skip to content

Commit 9a0728d

Browse files
authored
fix: use setuptools.find_namespace_packages (#321)
1 parent ac8d3ee commit 9a0728d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import io
1616

17-
from setuptools import find_packages
17+
from setuptools import find_namespace_packages
1818
from setuptools import setup
1919

2020

@@ -37,7 +37,7 @@
3737
description="Google Authentication Library",
3838
long_description=long_description,
3939
url="https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib",
40-
packages=find_packages(exclude=("tests*",)),
40+
packages=find_namespace_packages(exclude=("tests*",)),
4141
install_requires=DEPENDENCIES,
4242
extras_require={"tool": TOOL_DEPENDENCIES},
4343
entry_points={

0 commit comments

Comments
 (0)