added GPy.tests(), removed some useless tests

This commit is contained in:
Nicolo Fusi 2013-03-11 12:33:03 +00:00
parent 2b7f0999bc
commit e32afa11e5
5 changed files with 11 additions and 17 deletions

View file

@ -3,8 +3,6 @@
import os
from setuptools import setup
#from numpy.distutils.core import Extension, setup
#from sphinx.setup_command import BuildDoc
# Version number
version = '0.1.3'
@ -14,12 +12,12 @@ def read(fname):
setup(name = 'GPy',
version = version,
author = 'James Hensman, Nicolo Fusi, Ricardo Andrade, Nicolas Durrande, Alan Saul, Neil D. Lawrence',
author = read('AUTHORS.txt'),
author_email = "james.hensman@gmail.com",
description = ("The Gaussian Process Toolbox"),
license = "BSD 3-clause",
keywords = "machine-learning gaussian-processes kernels",
url = "http://ml.sheffield.ac.uk/GPy/",
url = "http://sheffieldml.github.com/GPy/",
packages = ['GPy', 'GPy.core', 'GPy.kern', 'GPy.util', 'GPy.models', 'GPy.inference', 'GPy.examples', 'GPy.likelihoods'],
package_dir={'GPy': 'GPy'},
package_data = {'GPy': ['GPy/examples']},