pipelines/components/google-cloud/setup.py

129 lines
4.9 KiB
Python

# Copyright 2021 The Kubeflow Authors. All Rights Reserved.
#
# 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.
"""Setup script."""
import glob
import importlib
import os
import types
import setuptools
relative_directory = os.path.relpath(os.path.dirname(os.path.abspath(__file__)))
GCPC_DIR_NAME = "google_cloud_pipeline_components"
relative_data_path = os.path.join(relative_directory, GCPC_DIR_NAME)
loader = importlib.machinery.SourceFileLoader(
fullname="version",
path=os.path.join(relative_directory, GCPC_DIR_NAME, "version.py"),
)
version = types.ModuleType(loader.name)
loader.exec_module(version)
# Get the long descriptions including link to RELEASE notes from README files.
with open("README.md") as fp:
_GCPC_LONG_DESCRIPTION = fp.read()
yaml_data = glob.glob(relative_data_path + "/**/*.yaml", recursive=True)
json_data = glob.glob(
relative_data_path + "/**/automl/**/*.json", recursive=True
)
setuptools.setup(
name="google-cloud-pipeline-components",
version=version.__version__,
description=(
"This SDK enables a set of First Party (Google owned) pipeline"
" components that allow users to take their experience from Vertex AI"
" SDK and other Google Cloud services and create a corresponding"
" pipeline using KFP or Managed Pipelines."
),
long_description=_GCPC_LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/kubeflow/pipelines/tree/master/components/google-cloud",
author="The Google Cloud Pipeline Components authors",
author_email="google-cloud-pipeline-components@google.com",
license="Apache License 2.0",
extras_require={
"tests": [
"mock>=4.0.0",
"flake8>=3.0.0",
"pytest>=6.0.0",
],
# first list of deps solves a readthedocs dependency resolution error
# related to protobuf
# second list of deps are true dependencies for building the site
"docs": [
"protobuf<4.0.0dev,>=3.19.0",
"grpcio-status<=1.47.0",
] + [
"commonmark==0.9.1",
"autodocsumm==0.2.9",
"sphinx==5.0.2",
"sphinx-immaterial==0.9.0",
"sphinx-rtd-theme==1.0.0",
"m2r2==0.3.3",
"sphinx-notfound-page==0.8.3",
],
},
include_package_data=True,
python_requires=">=3.7.0,<3.12.0",
install_requires=[
# Pin google-api-core version for the bug fixing in 1.31.5
# https://github.com/googleapis/python-api-core/releases/tag/v1.31.5
"google-api-core>=1.31.5,<3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
"kfp>=2.0.0b10,<=2.4.0",
"google-cloud-aiplatform>=1.14.0,<2",
"Jinja2==3.1.2",
],
project_urls={
"User Documentation": "https://cloud.google.com/vertex-ai/docs/pipelines/components-introduction",
"Reference Documentation": (
"https://google-cloud-pipeline-components.readthedocs.io/"
),
"Source": "https://github.com/kubeflow/pipelines/tree/master/components/google-cloud",
"Release Notes": "https://github.com/kubeflow/pipelines/tree/master/components/google-cloud/RELEASE.md",
},
dependency_links=[],
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: Unix",
"Operating System :: MacOS",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
package_dir={
GCPC_DIR_NAME: os.path.join(relative_directory, GCPC_DIR_NAME)
},
packages=setuptools.find_packages(where=relative_directory, include="*"),
package_data={
GCPC_DIR_NAME: [
x.replace(relative_data_path + "/", "")
for x in yaml_data + json_data
]
},
)