Merge pull request #358 from SheffieldML/devel

AUTHORS
This commit is contained in:
Max Zwiessele 2016-04-01 23:39:40 +01:00
commit 517f580b37
6 changed files with 17 additions and 5 deletions

View file

@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.0.1"

View file

@ -4,6 +4,7 @@ include doc/source/index.rst
include doc/source/tuto*.rst
include README.md
include README.rst
include AUTHORS.txt
# Data and config
recursive-include GPy *.json

View file

@ -31,7 +31,6 @@ If that is the case, it is best to clean the repo and reinstall.
| | Travis-CI | Codecov | RTFD |
| ---: | :--: | :---: | :---: |
| **master:** | [![masterstat](https://travis-ci.org/SheffieldML/GPy.svg?branch=master)](https://travis-ci.org/SheffieldML/GPy) | [![covmaster](http://codecov.io/github/SheffieldML/GPy/coverage.svg?branch=master)](http://codecov.io/github/SheffieldML/GPy?branch=master) | [![docmaster](https://readthedocs.org/projects/gpy/badge/?version=master)](http://gpy.readthedocs.org/en/master/) |
| **devel:** | [![develstat](https://travis-ci.org/SheffieldML/GPy.svg?branch=devel)](https://travis-ci.org/SheffieldML/GPy) | [![covdevel](http://codecov.io/github/SheffieldML/GPy/coverage.svg?branch=devel)](http://codecov.io/github/SheffieldML/GPy?branch=devel) | [![docdevel](https://readthedocs.org/projects/gpy/badge/?version=devel)](http://gpy.readthedocs.org/en/devel/) |
## Supported Platforms:

12
README.rst Normal file
View file

@ -0,0 +1,12 @@
# 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)
* [![licence](https://img.shields.io/badge/licence-BSD-blue.svg)](http://opensource.org/licenses/BSD-3-Clause)
For full description please refer to the [github page](http://sheffieldml.github.io/GPy/)

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.0.1
tag = False
commit = True

View file

@ -57,7 +57,7 @@ def read_to_rst(fname):
except ImportError:
return read(fname)
desc = read_to_rst('README.md')
#desc = read_to_rst('README.md')
version_dummy = {}
exec(read('GPy/__version__.py'), version_dummy)
@ -143,7 +143,7 @@ setup(name = 'GPy',
include_package_data = True,
py_modules = ['GPy.__init__'],
test_suite = 'GPy.testing',
long_description=desc,
#long_description=desc,
install_requires=['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz'],
extras_require = {'docs':['sphinx'],
'optional':['mpi4py',