Skip to content

Commit

Permalink
Fix inclusion of tests package in setup.py (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Wayne Parrott committed Mar 16, 2017
1 parent b9101e3 commit 7828c1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
include README.rst
graft google
global-exclude *.pyc __pycache__
include README.rst LICENSE CHANGELOG.rst
recursive-include tests *
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
description='Google Authentication Library',
long_description=long_description,
url='https://github.com/GoogleCloudPlatform/google-auth-library-python',
packages=find_packages(exclude=('tests', 'system_tests')),
packages=find_packages(exclude=('tests*', 'system_tests*')),
namespace_packages=('google',),
install_requires=DEPENDENCIES,
extras_require={
Expand Down

0 comments on commit 7828c1c

Please sign in to comment.