42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Kubeflow Pipelines API
|
|
|
|
This file contains REST API specification for Kubeflow Pipelines. The file is autogenerated from the swagger definition.
|
|
|
|
Contact: kubeflow-pipelines@google.com
|
|
Generated by: https://openapi-generator.tech
|
|
"""
|
|
|
|
|
|
from setuptools import setup, find_packages # noqa: H301
|
|
|
|
NAME = "kfp-server-api"
|
|
VERSION = "1.6.0"
|
|
# To install the library, run the following
|
|
#
|
|
# python setup.py install
|
|
#
|
|
# prerequisite: setuptools
|
|
# http://pypi.python.org/pypi/setuptools
|
|
|
|
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
|
|
|
|
setup(
|
|
name=NAME,
|
|
version=VERSION,
|
|
description="Kubeflow Pipelines API",
|
|
author="google",
|
|
author_email="kubeflow-pipelines@google.com",
|
|
url="https://github.com/kubeflow/pipelines",
|
|
keywords=["OpenAPI", "OpenAPI-Generator", "Kubeflow Pipelines API"],
|
|
install_requires=REQUIRES,
|
|
packages=find_packages(exclude=["test", "tests"]),
|
|
include_package_data=True,
|
|
license="Apache 2.0",
|
|
long_description="""\
|
|
This file contains REST API specification for Kubeflow Pipelines. The file is autogenerated from the swagger definition. # noqa: E501
|
|
"""
|
|
)
|