GPy/setup.py

35 lines
1.2 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
# Version number
2013-04-10 12:15:23 +01:00
version = '0.3.2'
2012-11-29 16:24:48 +00:00
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
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/",
2013-04-03 14:24:55 +01:00
packages = ['GPy', 'GPy.core', 'GPy.kern', 'GPy.util', 'GPy.models', 'GPy.inference', 'GPy.examples', 'GPy.likelihoods', 'GPy.testing'],
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-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 = {
'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
)