Skip to content

Commit

Permalink
[BUILD] Exclude benchmark module in bdist_wheel build (#591)
Browse files Browse the repository at this point in the history
* use find_namespace_packages

* update
  • Loading branch information
parano authored Apr 3, 2020
1 parent ea525eb commit 7794fb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,10 @@ include bentoml/alembic.ini

# include yatai server UI distribution files
graft bentoml/yatai/web/dist
prune bentoml/yatai/web/node_modules

# include ".conf" file
include bentoml/deployment/sagemaker/sagemaker_nginx.conf

# exclude e2e_tests files
prune e2e_tests
prune tests
prune benchmark
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,14 @@
cmdclass=versioneer.get_cmdclass(),
author="bentoml.org",
author_email="contact@bentoml.ai",
description="A platform for serving and deploying machine learning models in the "
"cloud",
description="An open-source platform for machine learning model serving.",
long_description=long_description,
license="Apache License 2.0",
long_description_content_type="text/markdown",
install_requires=install_requires,
extras_require=extras_require,
url="https://github.com/bentoml/BentoML",
packages=setuptools.find_packages(exclude=["tests*"]),
packages=setuptools.find_packages(exclude=["tests*", "benchmark*"]),
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
Expand Down

0 comments on commit 7794fb2

Please sign in to comment.