Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 7828c1c

Browse files
author
Jon Wayne Parrott
authored
Fix inclusion of tests package in setup.py (#131)
1 parent b9101e3 commit 7828c1c

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

MANIFEST.in

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
include README.rst
2-
graft google
3-
global-exclude *.pyc __pycache__
1+
include README.rst LICENSE CHANGELOG.rst
2+
recursive-include tests *

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
description='Google Authentication Library',
4040
long_description=long_description,
4141
url='https://github.com/GoogleCloudPlatform/google-auth-library-python',
42-
packages=find_packages(exclude=('tests', 'system_tests')),
42+
packages=find_packages(exclude=('tests*', 'system_tests*')),
4343
namespace_packages=('google',),
4444
install_requires=DEPENDENCIES,
4545
extras_require={

0 commit comments

Comments
 (0)