Skip to content

Commit

Permalink
Related to flyteorg/flyte#5805 [Flyte Deck] Extras has been added (fl…
Browse files Browse the repository at this point in the history
…yteorg#2786)

* [Flyte Deck] Extras has been added

Signed-off-by: 101rakibulhasan <[email protected]>

* Added "All" which will install all the libraries

Signed-off-by: 101rakibulhasan <[email protected]>

* Fixed linting issue using both pylint & flake8 on modified lines

Signed-off-by: 101rakibulhasan <[email protected]>

* fix lint

Signed-off-by: Future-Outlier <[email protected]>

---------

Signed-off-by: 101rakibulhasan <[email protected]>
Signed-off-by: Future-Outlier <[email protected]>
Co-authored-by: Future-Outlier <[email protected]>
  • Loading branch information
2 people authored and otarabai committed Oct 15, 2024
1 parent 7ec0141 commit 6413f45
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions plugins/flytekit-deck-standard/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@

plugin_requires = ["flytekit"]

extras = {
"pandas": ["pandas"],
"pillow": ["pillow"],
"ydata-profiling": ["ydata-profiling"],
"markdown": ["markdown"],
"plotly": ["plotly"],
"pygments": ["pygments"],
"all": ["pandas", "pillow", "ydata-profiling", "markdown", "plotly", "pygments"],
}

__version__ = "0.0.0+develop"

setup(
Expand All @@ -20,6 +30,7 @@
namespace_packages=["flytekitplugins"],
packages=[f"flytekitplugins.{PLUGIN_NAME}"],
install_requires=plugin_requires,
extras_require=extras,
license="apache2",
python_requires=">=3.8",
classifiers=[
Expand Down

0 comments on commit 6413f45

Please sign in to comment.