Skip to content
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
3 changes: 2 additions & 1 deletion paimon-python/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ include LICENSE
include NOTICE
include dev/requirements.txt
include README.md
recursive-include pypaimon *.py
recursive-include pypaimon *.py
recursive-exclude pypaimon/tests *
2 changes: 1 addition & 1 deletion paimon-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def _build_dev_package():

atexit.register(_build_dev_package)

PACKAGES = find_packages(include=["pypaimon*"])
PACKAGES = find_packages(include=["pypaimon*"], exclude=["pypaimon.tests*"])


def read_requirements():
Expand Down
Loading