Skip to content

Commit 1d0096d

Browse files
committed
fix: do not include docs/conf.py & scripts in wheel
1 parent 6499eb0 commit 1d0096d

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)