Skip to content

Commit

Permalink
chore(sdk): add kfp-kubernetes as kfp extras_require (kubeflow#9152)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor-mccarthy authored and rd-pong committed Apr 26, 2023
1 parent d2c06cc commit 953c96e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ def read_readme() -> str:
return f.read()


docker = ['docker']
kubernetes = ['kfp-kubernetes<2']

setuptools.setup(
name='kfp',
version=find_version('kfp', '__init__.py'),
Expand All @@ -74,7 +77,8 @@ def read_readme() -> str:
},
install_requires=get_requirements('requirements.in'),
extras_require={
'all': ['docker'],
'all': docker + kubernetes,
'kubernetes': kubernetes,
},
packages=setuptools.find_packages(exclude=['*test*']),
classifiers=[
Expand Down

0 comments on commit 953c96e

Please sign in to comment.