Skip to content

Commit

Permalink
Fix find_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Yard1 committed Oct 20, 2021
1 parent 2f95dbd commit 4c09a07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def readme():
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
packages=find_packages(include=["pycaret*"]),
include_package_data=True,
install_requires=required,
extras_require={"full": optional_required,
Expand Down
2 changes: 1 addition & 1 deletion setup_nightly.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def readme():
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
packages=find_packages(include=["pycaret*"]),
include_package_data=True,
install_requires=required,
extras_require={"full": optional_required,
Expand Down

0 comments on commit 4c09a07

Please sign in to comment.