[setup] readme in setup

This commit is contained in:
Max Zwiessele 2016-04-11 08:51:21 +01:00
parent 5519a2ef3e
commit 47b3a22bc6
3 changed files with 12 additions and 20 deletions

View file

@ -1,15 +0,0 @@
===
GPy
===
The Gaussian processes framework in Python.
-------------------------------------------
- `GPy homepage <http://sheffieldml.github.io/GPy/>`_
- `Tutorial notebooks <http://nbviewer.ipython.org/github/SheffieldML/notebook/blob/master/GPy/index.ipynb>`_
- `User mailing-list <https://lists.shef.ac.uk/sympa/subscribe/gpy-users>`_
- `Developer documentation <http://gpy.readthedocs.org/en/devel/>`_
- `Travis-CI unit-tests <https://travis-ci.org/SheffieldML/GPy>`_
- `License <https://opensource.org/licenses/BSD-3-Clause>`_
For full description and installation instructions please refer to the github page.

View file

@ -10,7 +10,3 @@ universal = 1
[upload_docs] [upload_docs]
upload-dir = doc/build/html upload-dir = doc/build/html
[metadata]
description-file = README.rst

View file

@ -57,7 +57,18 @@ def read_to_rst(fname):
except ImportError: except ImportError:
return read(fname) return read(fname)
desc = read('README.rst') desc = """
- `GPy homepage <http://sheffieldml.github.io/GPy/>`_
- `Tutorial notebooks <http://nbviewer.ipython.org/github/SheffieldML/notebook/blob/master/GPy/index.ipynb>`_
- `User mailing-list <https://lists.shef.ac.uk/sympa/subscribe/gpy-users>`_
- `Developer documentation <http://gpy.readthedocs.org/en/devel/>`_
- `Travis-CI unit-tests <https://travis-ci.org/SheffieldML/GPy>`_
- `License <https://opensource.org/licenses/BSD-3-Clause>`_
For full description and installation instructions please refer to the github page.
"""
version_dummy = {} version_dummy = {}
exec(read('GPy/__version__.py'), version_dummy) exec(read('GPy/__version__.py'), version_dummy)