diff --git a/.travis.yml b/.travis.yml index e8c95fcc1..cce1ee8df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,6 +55,9 @@ matrix: # Run Python linting, ignore dict vs {} (C408), others are defaults - flake8 --exclude=python/ray/core/generated/,doc/source/conf.py,python/ray/cloudpickle/ --ignore=C408,E121,E123,E126,E226,E24,E704,W503,W504,W605 - .travis/format.sh --all + # Make sure that the README is formatted properly. + - cd python + - python setup.py check --restructuredtext --strict --metadata - os: linux dist: trusty diff --git a/README.rst b/README.rst index 5fd892f95..ff5921a6b 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,4 @@ -.. raw:: html - - +.. image:: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_logo.png .. image:: https://travis-ci.com/ray-project/ray.svg?branch=master :target: https://travis-ci.com/ray-project/ray diff --git a/python/setup.py b/python/setup.py index ee0bd2524..fec34fd70 100644 --- a/python/setup.py +++ b/python/setup.py @@ -154,6 +154,8 @@ if sys.version_info < (3, 0): setup( name="ray", 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."), long_description=open("../README.rst").read(),