Exclude benchmarks directory from distribution (#19861)

* Exclude benchmarks directory from distribution

* lint

* format with bash shell/format.sh
This commit is contained in:
Mark Harfouche 2024-06-16 15:08:46 -04:00 committed by GitHub
parent 727b7ae4e1
commit 45e1175b78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -60,5 +60,8 @@ setup(
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
],
packages=find_packages(exclude=("*_test.py",)),
packages=find_packages(
include=("keras", "keras.*"),
exclude=("*_test.py", "benchmarks"),
),
)