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

Commit

Permalink
fix: exclude docs and tests from package (#104)
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 authored Jun 16, 2021
1 parent 5e21ed4 commit 2ddb70b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@
author_email="[email protected]",
license="Apache 2.0",
url="https://github.com/googleapis/python-dialogflow-cx",
packages=setuptools.PEP420PackageFinder.find(),
packages=[
package
for package in setuptools.PEP420PackageFinder.find()
if package.startswith("google")
],
namespace_packages=("google", "google.cloud"),
platforms="Posix; MacOS X; Windows",
include_package_data=True,
Expand Down

0 comments on commit 2ddb70b

Please sign in to comment.