2012-11-29 16:24:48 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
import os
|
2013-03-06 13:56:58 +00:00
|
|
|
from setuptools import setup
|
2012-11-29 16:24:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def read(fname):
|
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
|
|
2014-01-07 10:37:43 +00:00
|
|
|
# Version number
|
|
|
|
|
version = read('GPy/version')
|
|
|
|
|
|
2012-11-29 16:24:48 +00:00
|
|
|
setup(name = 'GPy',
|
|
|
|
|
version = version,
|
2013-03-11 12:33:03 +00:00
|
|
|
author = read('AUTHORS.txt'),
|
2012-11-29 16:24:48 +00:00
|
|
|
author_email = "james.hensman@gmail.com",
|
|
|
|
|
description = ("The Gaussian Process Toolbox"),
|
|
|
|
|
license = "BSD 3-clause",
|
|
|
|
|
keywords = "machine-learning gaussian-processes kernels",
|
2013-03-11 12:33:03 +00:00
|
|
|
url = "http://sheffieldml.github.com/GPy/",
|
2013-11-28 10:31:17 +00:00
|
|
|
packages = ['GPy', 'GPy.core', 'GPy.kern', 'GPy.util', 'GPy.models_modules', 'GPy.inference', 'GPy.examples', 'GPy.likelihoods', 'GPy.testing', 'GPy.util.latent_space_visualizations', 'GPy.util.latent_space_visualizations.controllers', 'GPy.likelihoods.noise_models', 'GPy.kern.parts', 'GPy.mappings'],
|
2012-11-29 16:24:48 +00:00
|
|
|
package_dir={'GPy': 'GPy'},
|
2014-01-07 10:37:43 +00:00
|
|
|
package_data = {'GPy': ['GPy/examples', 'gpy_config.cfg', 'util/data_resources.json', 'version']},
|
2012-11-29 16:24:48 +00:00
|
|
|
py_modules = ['GPy.__init__'],
|
2012-12-06 10:16:19 -08:00
|
|
|
long_description=read('README.md'),
|
2014-01-24 11:59:54 +00:00
|
|
|
install_requires=['scipy >= 0.12','matplotlib >= 1.2', 'nose'],
|
2013-02-08 15:42:02 +00:00
|
|
|
extras_require = {
|
2013-02-08 16:12:12 +00:00
|
|
|
'docs':['Sphinx', 'ipython'],
|
2013-02-08 15:42:02 +00:00
|
|
|
},
|
2012-11-29 16:24:48 +00:00
|
|
|
classifiers=[
|
|
|
|
|
"License :: OSI Approved :: BSD License"],
|
2013-06-04 11:42:22 +01:00
|
|
|
#ext_modules = [Extension(name = 'GPy.kern.lfmUpsilonf2py',
|
|
|
|
|
# sources = ['GPy/kern/src/lfmUpsilonf2py.f90'])],
|
2012-11-29 16:24:48 +00:00
|
|
|
)
|