Skip to content

Commit

Permalink
Properly exclude unneeded directories
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperCraeghs committed Sep 9, 2024
1 parent c16d962 commit cb1e75b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
'Topic :: Utilities',
],
platforms="any",
packages=find_namespace_packages(where=".", exclude=["example", "tests"]),
packages=find_namespace_packages(where=".", exclude=("example.*", "example", "tests.*", "tests", "build*")),
package_dir={"": "."},
include_package_data=False,
install_requires=requires,
Expand Down

0 comments on commit cb1e75b

Please sign in to comment.