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 <[email protected]> Co-authored-by: arithmetic1728 <[email protected]>
1 parent 95b70d0 commit 78940df

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

+7-1
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)