From 08fc9e5bcd1ef8ac46d5164ca12e4e70088a91ce Mon Sep 17 00:00:00 2001 From: Robert Nishihara Date: Sun, 28 Oct 2018 19:49:52 -0700 Subject: [PATCH] Add more description to setup.py. (#3153) --- python/setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/setup.py b/python/setup.py index 1636ead05..e55cc2529 100644 --- a/python/setup.py +++ b/python/setup.py @@ -122,6 +122,12 @@ setup( name="ray", # The version string is also in __init__.py. TODO(pcm): Fix this. version="0.5.3", + description=("A system for parallel and distributed Python that unifies " + "the ML ecosystem."), + long_description=open("../README.rst").read(), + url="https://github.com/ray-project/ray", + keywords=("ray distributed parallel machine-learning " + "reinforcement-learning deep-learning python"), packages=find_packages(), cmdclass={"build_ext": build_ext}, # The BinaryDistribution argument triggers build_ext.