mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-08 15:05:15 +02:00
commit
517f580b37
6 changed files with 17 additions and 5 deletions
|
|
@ -1 +1 @@
|
|||
__version__ = "1.0.0"
|
||||
__version__ = "1.0.1"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -31,7 +31,6 @@ If that is the case, it is best to clean the repo and reinstall.
|
|||
|
||||
| | Travis-CI | Codecov | RTFD |
|
||||
| ---: | :--: | :---: | :---: |
|
||||
| **master:** | [](https://travis-ci.org/SheffieldML/GPy) | [](http://codecov.io/github/SheffieldML/GPy?branch=master) | [](http://gpy.readthedocs.org/en/master/) |
|
||||
| **devel:** | [](https://travis-ci.org/SheffieldML/GPy) | [](http://codecov.io/github/SheffieldML/GPy?branch=devel) | [](http://gpy.readthedocs.org/en/devel/) |
|
||||
|
||||
## Supported Platforms:
|
||||
|
|
|
|||
12
README.rst
Normal file
12
README.rst
Normal 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)
|
||||
* [](http://opensource.org/licenses/BSD-3-Clause)
|
||||
|
||||
For full description please refer to the [github page](http://sheffieldml.github.io/GPy/)
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 1.0.0
|
||||
current_version = 1.0.1
|
||||
tag = False
|
||||
commit = True
|
||||
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue