Skip to content

Commit

Permalink
Merge pull request #3440 from asumagic/packaging/remove-tests-package
Browse files Browse the repository at this point in the history
Fix `tests` package being incorrectly included in builds
  • Loading branch information
alanakbik authored May 3, 2024
2 parents 223f346 + f88293a commit 617c2d3
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 @@ -13,7 +13,7 @@
author="Alan Akbik",
author_email="alan.akbik@gmail.com",
url="https://github.com/flairNLP/flair",
packages=find_packages(exclude="tests"), # same as name
packages=find_packages(exclude=["tests", "tests.*"]), # same as name
license="MIT",
install_requires=required,
include_package_data=True,
Expand Down

0 comments on commit 617c2d3

Please sign in to comment.