-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix PyPI package source for
v1.1.0
(#1088)
Signed-off-by: Author Name <[email protected]> Signed-off-by: Kevin Su <[email protected]> Co-authored-by: Kevin Su <[email protected]>
- Loading branch information
Showing
5 changed files
with
70 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
## Include files and folders | ||
|
||
# include folders | ||
recursive-include flytekit * | ||
recursive-include flytekit_scripts * | ||
recursive-include plugins * | ||
|
||
# include specific files | ||
include README.md | ||
include flytekit/py.typed # marker file for PEP 561 | ||
include flytekit/deck/html/template.html | ||
|
||
include CHANGELOG.md | ||
include LICENSE | ||
|
||
include MANIFEST.in | ||
include pyproject.toml | ||
include setup.py | ||
include setup.cfg | ||
|
||
|
||
## Exclude files and folders | ||
|
||
# exclude folders | ||
recursive-exclude tests * | ||
recursive-exclude docs * | ||
recursive-exclude boilerplate * | ||
recursive-exclude .github * | ||
|
||
# exclude dist folder: | ||
# - contains the generated *.tar.gz and .whl files. | ||
recursive-exclude dist * | ||
|
||
# exclude requirements files | ||
exclude requirements.* | ||
exclude requirements-*.* | ||
exclude doc-requirements.* | ||
exclude dev-requirements.* | ||
|
||
# exclude config files | ||
exclude .gitignore | ||
exclude .readthedocs.yaml | ||
exclude .pre-commit-config.yaml | ||
exclude codecov.yml | ||
|
||
# exclude other repository management files | ||
exclude Dockerfile.py* | ||
exclude Makefile | ||
exclude NOTICE | ||
exclude pull_request_template.md | ||
exclude CODEOWNERS | ||
exclude CODE_OF_CONDUCT.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,11 @@ | |
version=__version__, | ||
maintainer="Flyte Contributors", | ||
maintainer_email="[email protected]", | ||
packages=find_packages(exclude=["tests*"]), | ||
packages=find_packages( | ||
include=["flytekit", "flytekit_scripts", "plugins"], | ||
exclude=["boilerplate", "docs", "tests*"], | ||
), | ||
include_package_data=True, | ||
package_data={"": ["template.html"]}, | ||
url="https://github.com/flyteorg/flytekit", | ||
description="Flyte SDK for Python", | ||
long_description=open("README.md", encoding="utf-8").read(), | ||
|