Thanks to visit codestin.com Credit goes to github.com
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 fe32694 commit 95fe320Copy full SHA for 95fe320
packages/google-cloud-data-qna/setup.py
@@ -36,7 +36,11 @@
36
author_email="[email protected]",
37
license="Apache 2.0",
38
url="https://github.com/googleapis/python-data-qna",
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