Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
fix: exclude docs and tests from package (#30)
Browse files Browse the repository at this point in the history
Only include packages that start with google in the published artifact
  • Loading branch information
busunkim96 committed Jun 16, 2021
1 parent 0176399 commit 20ebc47
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Expand Up @@ -36,7 +36,11 @@
author_email="googleapis-packages@google.com",
license="Apache 2.0",
url="https://github.com/googleapis/python-domains",
packages=setuptools.PEP420PackageFinder.find(),
packages=[
package
for package in setuptools.PEP420PackageFinder.find()
if package.startswith("google")
],
include_package_data=True,
install_requires=(
"google-api-core[grpc] >= 1.22.2, < 2.0.0dev",
Expand Down

0 comments on commit 20ebc47

Please sign in to comment.