Skip to content

Commit

Permalink
fix: use setuptools.find_namespace_packages (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Nov 28, 2023
1 parent ac8d3ee commit 9a0728d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import io

from setuptools import find_packages
from setuptools import find_namespace_packages
from setuptools import setup


Expand All @@ -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={
Expand Down

0 comments on commit 9a0728d

Please sign in to comment.