mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-24 20:36:23 +02:00
[doc] readthedocs strangeness
This commit is contained in:
parent
b6f4072717
commit
e54b94485a
4 changed files with 16 additions and 12 deletions
|
|
@ -1 +1 @@
|
||||||
[GPy Authors](https://github.com/SheffieldML/GPy/graphs/contributors)
|
GPy Authors: https://github.com/SheffieldML/GPy/graphs/contributors
|
||||||
20
README.rst
20
README.rst
|
|
@ -1,12 +1,16 @@
|
||||||
# GPy
|
===
|
||||||
|
GPy
|
||||||
|
===
|
||||||
|
|
||||||
The Gaussian processes framework in Python.
|
The Gaussian processes framework in Python.
|
||||||
|
-------------------------------------------
|
||||||
|
|
||||||
* GPy [homepage](http://sheffieldml.github.io/GPy/)
|
- `GPy homepage <http://sheffieldml.github.io/GPy/>`_
|
||||||
* Tutorial [notebooks](http://nbviewer.ipython.org/github/SheffieldML/notebook/blob/master/GPy/index.ipynb)
|
- `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)
|
- `User mailing-list <https://lists.shef.ac.uk/sympa/subscribe/gpy-users>`_
|
||||||
* Developer [documentation](http://gpy.readthedocs.org/en/devel/)
|
- `Developer documentation <http://gpy.readthedocs.org/en/devel/>`_
|
||||||
* Travis-CI [unit-tests](https://travis-ci.org/SheffieldML/GPy)
|
- `Travis-CI unit-tests <https://travis-ci.org/SheffieldML/GPy>`_
|
||||||
* [](http://opensource.org/licenses/BSD-3-Clause)
|
- .. image:: https://img.shields.io/badge/licence-BSD-blue.svg
|
||||||
|
:target: https://opensource.org/licenses/BSD-3-Clause
|
||||||
|
|
||||||
For full description please refer to the [github page](http://sheffieldml.github.io/GPy/)
|
For full description and installation instructions please refer to the github page.
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ import shlex
|
||||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||||
#for p in os.walk('../../GPy'):
|
#for p in os.walk('../../GPy'):
|
||||||
# sys.path.append(p[0])
|
# sys.path.append(p[0])
|
||||||
sys.path.insert(0, os.path.abspath('../../'))
|
#sys.path.insert(0, os.path.abspath('../../'))
|
||||||
sys.path.insert(0, os.path.abspath('../../GPy/'))
|
sys.path.insert(0, os.path.abspath('../../GPy/'))
|
||||||
|
|
||||||
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -57,7 +57,7 @@ def read_to_rst(fname):
|
||||||
except ImportError:
|
except ImportError:
|
||||||
return read(fname)
|
return read(fname)
|
||||||
|
|
||||||
#desc = read_to_rst('README.md')
|
desc = read('README.rst')
|
||||||
|
|
||||||
version_dummy = {}
|
version_dummy = {}
|
||||||
exec(read('GPy/__version__.py'), version_dummy)
|
exec(read('GPy/__version__.py'), version_dummy)
|
||||||
|
|
@ -143,7 +143,7 @@ setup(name = 'GPy',
|
||||||
include_package_data = True,
|
include_package_data = True,
|
||||||
py_modules = ['GPy.__init__'],
|
py_modules = ['GPy.__init__'],
|
||||||
test_suite = 'GPy.testing',
|
test_suite = 'GPy.testing',
|
||||||
#long_description=desc,
|
long_description=desc,
|
||||||
install_requires=['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz'],
|
install_requires=['numpy>=1.7', 'scipy>=0.16', 'six', 'paramz'],
|
||||||
extras_require = {'docs':['sphinx'],
|
extras_require = {'docs':['sphinx'],
|
||||||
'optional':['mpi4py',
|
'optional':['mpi4py',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue