Skip to content

Commit

Permalink
fix: use setuptools.find_namespace_packages (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Dec 19, 2023
1 parent e8da3a1 commit 9ec352a
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 @@ -82,7 +82,7 @@
# benchmarks, etc.
packages = [
package
for package in setuptools.PEP420PackageFinder.find()
for package in setuptools.find_namespace_packages()
if package.startswith("bigframes") or package.startswith("third_party")
]

Expand Down

0 comments on commit 9ec352a

Please sign in to comment.