From 4b9d069a8e560fbd32c632d1d7dbc028bf43123e Mon Sep 17 00:00:00 2001 From: Michael Schubert Date: Tue, 11 Jul 2023 13:11:08 +0200 Subject: [PATCH] exclude tests directory from installation --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 091efd2..fe7596c 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ url='https://github.com/pierre-rouanet/dtw', license='GNU GENERAL PUBLIC LICENSE Version 3', - packages=find_packages(), + packages=find_packages(exclude=["tests"]), install_requires=['numpy', 'scipy'], test_suite='tests',