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

Commit

Permalink
WIP - committing the work so far
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut committed Sep 16, 2020
1 parent 84978cd commit c657f60
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
17 changes: 11 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
# 'Development Status :: 4 - Beta'
# 'Development Status :: 5 - Production/Stable'
release_status = "Development Status :: 5 - Production/Stable"
dependencies = ["google-api-core[grpc] >= 1.14.0, < 2.0.0dev"]
dependencies = [
"google-api-core[grpc] >= 1.22.2, < 2.0.0dev",
"proto-plus >= 1.4.0",
"libcst >= 0.2.5",
]
extras = {}


Expand All @@ -43,7 +47,9 @@
# Only include packages under the 'google' namespace. Do not include tests,
# benchmarks, etc.
packages = [
package for package in setuptools.find_packages() if package.startswith("google")
package
for package in setuptools.PEP420PackageFinder.find()
if package.startswith("google")
]

# Determine which namespaces are needed.
Expand All @@ -66,12 +72,10 @@
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Internet",
],
Expand All @@ -80,7 +84,8 @@
namespace_packages=namespaces,
install_requires=dependencies,
extras_require=extras,
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
python_requires=">=3.6",
scripts=["scripts/fixup_datatransfer_v1_keywords.py"],
include_package_data=True,
zip_safe=False,
)
4 changes: 2 additions & 2 deletions synth.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "git@github.com:plamut/python-bigquery-datatransfer.git",
"sha": "c9c939dac31650963c694e0df8e0e319742491eb"
"sha": "84978cdd24a3b504b5f6fcafcec6841a512d2d60"
}
},
{
Expand All @@ -26,7 +26,7 @@
{
"client": {
"source": "googleapis",
"apiName": "bigquery-data-transfer",
"apiName": "datatransfer",
"apiVersion": "v1",
"language": "python",
"generator": "bazel"
Expand Down
2 changes: 1 addition & 1 deletion synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# ----------------------------------------------------------------------------
for version in versions:
library = gapic.py_library(
service="bigquery-data-transfer",
service="bigquery_datatransfer",
version=version,
bazel_target=(
f"//google/cloud/bigquery/datatransfer/{version}:"
Expand Down

0 comments on commit c657f60

Please sign in to comment.