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

Commit

Permalink
feat: generate v1alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Sep 4, 2020
0 parents commit 7c9b3c5
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .repo-metadata.json
@@ -0,0 +1,12 @@
{
"name": "area120tables",
"name_pretty": "Area 120 Tables API",
"product_documentation": "",
"client_documentation": "https://googleapis.dev/python/area120tables/latest",
"issue_tracker": "",
"release_level": "alpha",
"language": "python",
"repo": "googleapis/python-area120-tables",
"distribution_name": "google-area120-tables",
"api_id": "area120tables.googleapis.com"
}
47 changes: 47 additions & 0 deletions synth.py
@@ -0,0 +1,47 @@
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""This script is used to synthesize generated parts of this library."""
import os

import synthtool as s
import synthtool.gcp as gcp
from synthtool.languages import python

gapic = gcp.GAPICBazel()
common = gcp.CommonTemplates()

# ----------------------------------------------------------------------------
# Generate area120 tables GAPIC layer
# ----------------------------------------------------------------------------
library = gapic.py_library(
service="tables",
version="v1alpha1",
bazel_target="//google/area120/tables/v1alpha1:area120-tables-v1alpha1-py",

)

s.move(library)

# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(cov_level=99, microgenerator=True)
s.move(
templated_files, excludes=[".coveragerc"]
) # the microgenerator has a good coveragerc file


s.shell.run(["nox", "-s", "blacken"], hide_output=False)

0 comments on commit 7c9b3c5

Please sign in to comment.