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
|
|
|
|
|
|
|
|
# Version number
|
|
|
|
|
version = '0.1.3'
|
|
|
|
|
|
|
|
|
|
def read(fname):
|
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
|
|
|
|
|
|
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-02-08 16:04:26 +00:00
|
|
|
packages = ['GPy', 'GPy.core', 'GPy.kern', 'GPy.util', 'GPy.models', 'GPy.inference', 'GPy.examples', 'GPy.likelihoods'],
|
2012-11-29 16:24:48 +00:00
|
|
|
package_dir={'GPy': 'GPy'},
|
|
|
|
|
package_data = {'GPy': ['GPy/examples']},
|
|
|
|
|
py_modules = ['GPy.__init__'],
|
2012-12-06 10:16:19 -08:00
|
|
|
long_description=read('README.md'),
|
2013-01-18 13:07:14 +00:00
|
|
|
#ext_modules = [Extension(name = 'GPy.kern.lfmUpsilonf2py',
|
|
|
|
|
# sources = ['GPy/kern/src/lfmUpsilonf2py.f90'])],
|
2013-03-11 14:54:11 +00:00
|
|
|
install_requires=['sympy', 'numpy>=1.6', 'scipy>=0.9','matplotlib>=1.1', '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
|
|
|
},
|
2013-02-08 13:24:25 +00:00
|
|
|
#setup_requires=['sphinx'],
|
|
|
|
|
#cmdclass = {'build_sphinx': BuildDoc},
|
2012-11-29 16:24:48 +00:00
|
|
|
classifiers=[
|
|
|
|
|
"License :: OSI Approved :: BSD License"],
|
|
|
|
|
)
|