From 0680f4e803f613e8a98441e7e35bc4391818bcd3 Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Sun, 16 Oct 2022 15:44:03 +0200 Subject: [PATCH] update setup.py, avoid installation of 'tests' otherwise it would try to install a package called 'tests' at top level. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 56137ee..f1c7952 100644 --- a/setup.py +++ b/setup.py @@ -111,7 +111,7 @@ def run(self): # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). - packages=find_packages(), + packages=find_packages(exclude=['tests','tests.*']), # TODO: Add a command line tool # To provide executable scripts, use entry points in preference to the