Skip to content

Commit 78940df

Browse files
mgornyclundin25arithmetic1728
authored
fix: do not include docs/conf.py & scripts in wheel (#328)
Co-authored-by: Carl Lundin <108372512+clundin25@users.noreply.github.com> Co-authored-by: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com>
1 parent 95b70d0 commit 78940df

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,13 @@
3737
description="Google Authentication Library",
3838
long_description=long_description,
3939
url="https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib",
40-
packages=find_namespace_packages(exclude=("tests*",)),
40+
packages=find_namespace_packages(
41+
exclude=(
42+
"docs*",
43+
"scripts*",
44+
"tests*",
45+
)
46+
),
4147
install_requires=DEPENDENCIES,
4248
extras_require={"tool": TOOL_DEPENDENCIES},
4349
entry_points={

0 commit comments

Comments
 (0)