Skip to content

Commit

Permalink
Remove plugins from flytekit core packaging (#1357)
Browse files Browse the repository at this point in the history
Remove plugins from flytekit core packaging
Signed-off-by: Yee Hing Tong <wild-endeavor@users.noreply.github.com>
  • Loading branch information
wild-endeavor committed Nov 30, 2022
1 parent c0d7fca commit fb10e4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# include folders
recursive-include flytekit *
recursive-include flytekit_scripts *
recursive-include plugins *

# include specific files
include README.md
Expand All @@ -25,6 +24,7 @@ recursive-exclude tests *
recursive-exclude docs *
recursive-exclude boilerplate *
recursive-exclude .github *
recursive-exclude plugins *

# exclude dist folder:
# - contains the generated *.tar.gz and .whl files.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
maintainer="Flyte Contributors",
maintainer_email="admin@flyte.org",
packages=find_packages(
include=["flytekit", "flytekit_scripts", "plugins"],
exclude=["boilerplate", "docs", "tests*"],
include=["flytekit", "flytekit_scripts"],
exclude=["boilerplate", "docs", "plugins", "tests*"],
),
include_package_data=True,
url="https://github.com/flyteorg/flytekit",
Expand Down

0 comments on commit fb10e4b

Please sign in to comment.