Skip to content

Commit

Permalink
Specify packages to look for in setup.py to avoid publishing tests (#529
Browse files Browse the repository at this point in the history
)

* Specify packages to look for in setup.py to avoid publishing tests

* Add `merlin_standard_lib` to `MANIFEST.in`
  • Loading branch information
oliverholworthy committed Nov 21, 2022
1 parent 1c5736f commit 51762cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ recursive-include tests *.pbtxt
recursive-include tests *.py

recursive-include transformers4rec *.parquet *.json *.py *.typed
recursive-include merlin_standard_lib *.py


# Ignore notebooks & examples
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def read_requirements(filename):
name="transformers4rec",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
packages=find_packages(include=["transformers4rec", "merlin_standard_lib"]),
url="https://github.com/NVIDIA-Merlin/Transformers4Rec",
author="NVIDIA Corporation",
license="Apache 2.0",
Expand Down

0 comments on commit 51762cb

Please sign in to comment.