Skip to content

Commit

Permalink
fix: do not include docs/conf.py & scripts in wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
mgorny committed Jan 8, 2024
1 parent 6499eb0 commit 1d0096d
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 1d0096d

Please sign in to comment.