Skip to content

Commit 8dc2b93

Browse files
committed
chore: revert setup.py for api server
Signed-off-by: zazulam <[email protected]>
1 parent b3bcf95 commit 8dc2b93

File tree

5 files changed

+79
-127
lines changed

5 files changed

+79
-127
lines changed

backend/api/v1beta1/python_http_client/pyproject.toml

Lines changed: 0 additions & 62 deletions
This file was deleted.
Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,41 @@
11
# coding: utf-8
2-
from setuptools import setup
32

4-
setup()
3+
"""
4+
Kubeflow Pipelines API
5+
6+
This file contains REST API specification for Kubeflow Pipelines. The file is autogenerated from the swagger definition.
7+
8+
9+
Generated by: https://openapi-generator.tech
10+
"""
11+
12+
13+
from setuptools import setup, find_packages # noqa: H301
14+
15+
NAME = "kfp-server-api"
16+
VERSION = "2.14.6"
17+
# To install the library, run the following
18+
#
19+
# python setup.py install
20+
#
21+
# prerequisite: setuptools
22+
# http://pypi.python.org/pypi/setuptools
23+
24+
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
25+
26+
setup(
27+
name=NAME,
28+
version=VERSION,
29+
description="Kubeflow Pipelines API",
30+
author="google",
31+
author_email="[email protected]",
32+
url="https://github.com/kubeflow/pipelines",
33+
keywords=["OpenAPI", "OpenAPI-Generator", "Kubeflow Pipelines API"],
34+
install_requires=REQUIRES,
35+
packages=find_packages(exclude=["test", "tests"]),
36+
include_package_data=True,
37+
license="Apache 2.0",
38+
long_description="""\
39+
This file contains REST API specification for Kubeflow Pipelines. The file is autogenerated from the swagger definition. # noqa: E501
40+
"""
41+
)

backend/api/v1beta1/python_http_client/tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
envlist = py27, py3
33

44
[testenv]
5-
deps=
6-
.[dev]
5+
deps=-r{toxinidir}/requirements.txt
6+
-r{toxinidir}/test-requirements.txt
77

88
commands=
99
pytest --cov=kfp_server_api

backend/api/v2beta1/python_http_client/pyproject.toml

Lines changed: 0 additions & 59 deletions
This file was deleted.
Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# coding: utf-8
22

3-
from setuptools import setup
3+
"""
4+
Kubeflow Pipelines API
45
5-
setup()
6+
This file contains REST API specification for Kubeflow Pipelines. The file is autogenerated from the swagger definition.
7+
8+
9+
Generated by: https://openapi-generator.tech
10+
"""
11+
12+
13+
from setuptools import setup, find_packages # noqa: H301
14+
15+
NAME = "kfp-server-api"
16+
VERSION = "2.14.6"
17+
# To install the library, run the following
18+
#
19+
# python setup.py install
20+
#
21+
# prerequisite: setuptools
22+
# http://pypi.python.org/pypi/setuptools
23+
24+
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
25+
26+
setup(
27+
name=NAME,
28+
version=VERSION,
29+
description="Kubeflow Pipelines API",
30+
author="google",
31+
author_email="[email protected]",
32+
url="https://github.com/kubeflow/pipelines",
33+
keywords=["OpenAPI", "OpenAPI-Generator", "Kubeflow Pipelines API"],
34+
install_requires=REQUIRES,
35+
packages=find_packages(exclude=["test", "tests"]),
36+
include_package_data=True,
37+
license="Apache 2.0",
38+
long_description="""\
39+
This file contains REST API specification for Kubeflow Pipelines. The file is autogenerated from the swagger definition. # noqa: E501
40+
"""
41+
)

0 commit comments

Comments
 (0)