Skip to content

Commit

Permalink
setup: Exclude tests from non-development install.
Browse files Browse the repository at this point in the history
  • Loading branch information
neiljp authored and amanagr committed Jul 22, 2019
1 parent 4a6f85d commit 49b07fc
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 @@ -67,7 +67,7 @@ def long_description():
],
python_requires='>=3.5, <3.8',
keywords='',
packages=find_packages(exclude=['test', 'test.*']),
packages=find_packages(exclude=['tests', 'tests.*']),
zip_safe=True,
cmdclass={'test': PyTest},
test_suite='test',
Expand Down

0 comments on commit 49b07fc

Please sign in to comment.