We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac60dc1 commit b8a70d9Copy full SHA for b8a70d9
1 file changed
setup.py
@@ -43,7 +43,11 @@
43
author_email="googleapis-packages@google.com",
44
license="Apache 2.0",
45
url="https://github.com/googleapis/python-pubsublite",
46
- packages=setuptools.PEP420PackageFinder.find(),
+ packages=[
47
+ package
48
+ for package in setuptools.PEP420PackageFinder.find()
49
+ if package.startswith("google")
50
+ ],
51
namespace_packages=("google", "google.cloud"),
52
platforms="Posix; MacOS X; Windows",
53
include_package_data=True,
0 commit comments