summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2020-10-24 00:19:27 +0300
committerVille Skyttä <ville.skytta@iki.fi>2020-10-24 00:19:27 +0300
commit8731e60484fb28e25b9616f15a8d12b8c36e661d (patch)
tree1d9076f33f93cb480439b98631fafc471b7ce539
parent7128320cf8c60e485995ed9e7c17bc982561d8f1 (diff)
Fix tests install exclusion
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 7b4b393..d5c8f55 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ setup(
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
- packages=find_packages(exclude=['tests*']),
+ packages=find_packages(exclude=['tests*', '*.tests*']),
extras_require = {
'lxml' : [ 'lxml'],
'html5lib' : ['html5lib'],