From c617291b2769f273d0832509e4739c58edb97e3f Mon Sep 17 00:00:00 2001 From: Tao Wang Date: Tue, 5 Jan 2021 11:34:03 +0800 Subject: [PATCH] [build]Update description and add some keywords (#13163) --- python/setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/setup.py b/python/setup.py index 62fc4b694..7bbf28cb5 100644 --- a/python/setup.py +++ b/python/setup.py @@ -430,15 +430,15 @@ setuptools.setup( version=find_version("ray", "__init__.py"), author="Ray Team", author_email="ray-dev@googlegroups.com", - description=("A system for parallel and distributed Python that " - "unifies the ML ecosystem."), + description=("Ray provides a simple, universal API for building " + "distributed applications."), long_description=io.open( os.path.join(ROOT_DIR, os.path.pardir, "README.rst"), "r", encoding="utf-8").read(), url="https://github.com/ray-project/ray", - keywords=("ray distributed parallel machine-learning " - "reinforcement-learning deep-learning python"), + keywords=("ray distributed parallel machine-learning hyperparameter-tuning" + "reinforcement-learning deep-learning serving python"), packages=setuptools.find_packages(), cmdclass={"build_ext": build_ext}, # The BinaryDistribution argument triggers build_ext.