1# Copyright 2020 Google LLC 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15import synthtool as s 16from synthtool import gcp 17 18from synthtool.languages import python 19 20common = gcp.CommonTemplates() 21 22# ---------------------------------------------------------------------------- 23# Add templated files 24# ---------------------------------------------------------------------------- 25templated_files = common.py_library() 26 27# Copy kokoro configs. 28# Docs are excluded as repo docs cannot currently be generated using sphinx. 29s.move(templated_files / '.kokoro', excludes=['**/docs/*', 'publish-docs.sh']) 30s.move(templated_files / '.trampolinerc') # config file for trampoline_v2 31 32# Also move issue templates 33s.move(templated_files / '.github', excludes=['CODEOWNERS']) 34 35# Move scripts folder needed for samples CI 36s.move(templated_files / 'scripts') 37 38# Copy CONTRIBUTING.rst 39s.move(templated_files / 'CONTRIBUTING.rst') 40 41# ---------------------------------------------------------------------------- 42# Samples templates 43# ---------------------------------------------------------------------------- 44 45python.py_samples(skip_readmes=True) 46