Skip to content

Commit

Permalink
Excluding tests package from release artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Barrette authored and mzaglia committed Oct 14, 2020
1 parent 11a9ab9 commit dd5b75b
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 @@ -46,7 +46,7 @@
description=__doc__,
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
packages=list(filter(lambda pkg: 'tests' not in pkg, find_packages())),
include_package_data=True,
zip_safe=False,
platforms='any',
Expand Down

0 comments on commit dd5b75b

Please sign in to comment.