Really exclude tests from python packages

This commit is contained in:
Raphael Michel
2016-02-16 16:22:12 +01:00
parent c930829510
commit bbcfb62d27
2 changed files with 16 additions and 1 deletions

View File

@@ -48,6 +48,6 @@ setup(
'stripe': ['stripe>=1.22,<1.23']
},
packages=find_packages(exclude=['tests']),
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
)