From b50be78aa6f64f793fd8f6e85ea04ceaadb0d968 Mon Sep 17 00:00:00 2001 From: Benjamin Bertrand Date: Tue, 7 Jun 2022 22:09:31 +0200 Subject: [PATCH] Exclude top level tests from packages The current multivisor package installs the "tests" directory as global package. It should be excluded. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6510952..825b82a 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ description="A centralized supervisor UI (web & CLI)", long_description=readme, long_description_content_type="text/markdown", - packages=find_packages(), + packages=find_packages(exclude=("tests", "tests.*")), package_data={ "multivisor.server": ["dist/*", "dist/static/css/*", "dist/static/js/*"] },