From 71d5368feae2a56f5a7f8c909969f1ac18efa9b9 Mon Sep 17 00:00:00 2001 From: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> Date: Mon, 8 May 2023 16:25:31 +0200 Subject: [PATCH] fix deployment of tests (#933) fix #932 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b275d95..5ff7e75 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup(name='maigret', url='https://github.com/soxoj/maigret', install_requires=requires, entry_points={'console_scripts': ['maigret = maigret.maigret:run']}, - packages=find_packages(), + packages=find_packages(exclude=["tests*"]), include_package_data=True, author='Soxoj', author_email='soxoj@protonmail.com',