GPy/setup.py

36 lines
1.4 KiB
Python
Raw Normal View History

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,
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",
url = "http://sheffieldml.github.com/GPy/",
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'),
install_requires=['scipy >= 0.12','matplotlib >= 1.2', 'nose'],
2013-02-08 15:42:02 +00:00
extras_require = {
'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
)