Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

Commit

Permalink
fix: Filter out tests from packages
Browse files Browse the repository at this point in the history
Fixes #61
  • Loading branch information
relekang committed Mar 9, 2016
1 parent 028f634 commit 389c792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def _read_long_description():
author_email='[email protected]',
description='Authentication backend for django that uses a one time code instead of passwords',
long_description=_read_long_description(),
packages=find_packages(exclude='tests'),
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_require=[
'django>=1.4',
],
Expand Down

0 comments on commit 389c792

Please sign in to comment.