Skip to content

Commit

Permalink
Fix exclusion of examples/ (#467)
Browse files Browse the repository at this point in the history
Otherwise examples will be installed as a top level module.

Co-authored-by: anilbey <[email protected]>
  • Loading branch information
penguinpee and anilbey committed Jun 19, 2024
1 parent aff67f8 commit 4fcf47a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,8 @@
'arbor': EXTRA_ARBOR,
},
packages=setuptools.find_packages(
exclude=(
'examples',
)),
exclude=['examples*'],
),
author="BlueBrain Project, EPFL",
author_email="[email protected]",
description="Bluebrain Python Optimisation Library (bluepyopt)",
Expand Down

0 comments on commit 4fcf47a

Please sign in to comment.