From 4fcf47a075ecbe2aa967040d297d0131339a75e3 Mon Sep 17 00:00:00 2001 From: Sandro Date: Wed, 19 Jun 2024 12:51:12 +0200 Subject: [PATCH] Fix exclusion of examples/ (#467) Otherwise examples will be installed as a top level module. Co-authored-by: anilbey --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ad957baf..f62638c4 100644 --- a/setup.py +++ b/setup.py @@ -64,9 +64,8 @@ 'arbor': EXTRA_ARBOR, }, packages=setuptools.find_packages( - exclude=( - 'examples', - )), + exclude=['examples*'], + ), author="BlueBrain Project, EPFL", author_email="werner.vangeit@epfl.ch", description="Bluebrain Python Optimisation Library (bluepyopt)",