Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove plugins from flytekit core packaging #1357

Merged
merged 1 commit into from
Nov 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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="[email protected]",
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