Skip to content

Commit

Permalink
fix: do not include docs/conf.py & scripts in wheel (#328)
Browse files Browse the repository at this point in the history
Co-authored-by: Carl Lundin <108372512+clundin25@users.noreply.github.com>
Co-authored-by: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com>
  • Loading branch information
3 people authored Jul 9, 2024
1 parent 95b70d0 commit 78940df
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@
description="Google Authentication Library",
long_description=long_description,
url="https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib",
packages=find_namespace_packages(exclude=("tests*",)),
packages=find_namespace_packages(
exclude=(
"docs*",
"scripts*",
"tests*",
)
),
install_requires=DEPENDENCIES,
extras_require={"tool": TOOL_DEPENDENCIES},
entry_points={
Expand Down

0 comments on commit 78940df

Please sign in to comment.