We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0b70c0 commit c75b52bCopy full SHA for c75b52b
setup.py
@@ -36,7 +36,11 @@
36
author_email="googleapis-packages@google.com",
37
license="Apache 2.0",
38
url="https://github.com/googleapis/python-functions",
39
- packages=setuptools.PEP420PackageFinder.find(),
+ packages=[
40
+ package
41
+ for package in setuptools.PEP420PackageFinder.find()
42
+ if package.startswith("google")
43
+ ],
44
namespace_packages=("google", "google.cloud"),
45
platforms="Posix; MacOS X; Windows",
46
include_package_data=True,
0 commit comments