Skip to content

Commit

Permalink
fix: Use correct syntax to exclude tests in package
Browse files Browse the repository at this point in the history
This implements #92 without deleting __init__.py files.
  • Loading branch information
relekang committed Jan 12, 2019
1 parent 896e37b commit 3e41e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -36,7 +36,7 @@ def _read_long_description():
author_email='me@rolflekang.com',
description='Automatic semantic versioning for python projects',
long_description=_read_long_description(),
packages=find_packages(exclude='tests'),
packages=find_packages(exclude=('tests',)),
license='MIT',
install_requires=requirements,
entry_points='''
Expand Down

0 comments on commit 3e41e91

Please sign in to comment.