Skip to content
Permalink
Browse files
fix: exclude docs and tests from package (#44)
Only include packages that start with google in the published artifact
  • Loading branch information
busunkim96 committed Jun 16, 2021
1 parent cd4365b commit d3dda4c
Showing 1 changed file with 5 additions and 1 deletion.
@@ -35,7 +35,11 @@
author_email="googleapis-packages@google.com",
license="Apache 2.0",
url="https://github.com/googleapis/python-assured-workloads",
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,

0 comments on commit d3dda4c

Please sign in to comment.