From 303742257b7ac53fbb6897f8f000f11fc088be44 Mon Sep 17 00:00:00 2001 From: Ales Erjavec Date: Mon, 12 Apr 2021 11:29:05 +0200 Subject: [PATCH] setup.py: Exclude benchmark directory from the install --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index abf9e645259..e2e668f7ec5 100755 --- a/setup.py +++ b/setup.py @@ -172,7 +172,7 @@ def write_version_py(filename='Orange/version.py'): a.close() -PACKAGES = find_packages() +PACKAGES = find_packages(include=("Orange.*",)) # Extra non .py, .{so,pyd} files that are installed within the package dir # hierarchy